Skip to content

Commit edf95a3

Browse files
author
Arno Klein
committed
Remove 0th Laplace-Beltrami coefficient in docstring output, which is +/-0
1 parent ac43eba commit edf95a3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

mindboggle/shapes/laplace_beltrami.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -775,8 +775,7 @@ def spectrum_per_label(vtk_file, spectrum_size=10, exclude_labels=[-1],
775775
>>> spectrum_lists, label_list = spectrum_per_label(vtk_file,
776776
... spectrum_size, exclude_labels, None, area_file, largest_segment,
777777
... verbose)
778-
>>> c = [np.float("{0:.{1}f}".format(x, 5)) for x in spectrum_lists[0][1::]]
779-
>>> c[1::]
778+
>>> [np.float("{0:.{1}f}".format(x, 5)) for x in spectrum_lists[0][1::]]
780779
[0.00054, 0.00244, 0.00291, 0.00456, 0.00575]
781780
>>> label_list[0:10]
782781
[1029, 1005, 1011, 1021, 1008, 1025, 999, 1013, 1007, 1022]

0 commit comments

Comments
 (0)