You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: gridgen/bin/parameters.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -185,13 +185,13 @@
185
185
"type": "str",
186
186
"necessary": False,
187
187
"values": ['gaussian', 'sphere', 'inverse'],
188
-
"help": "TODO",
188
+
"help": "method to compute the value at each electrode. `sphere` is the sum of the voxels around the electrodes, within `kernel` distance. `gaussian` is the weighted average of the voxels around an electrode, weighted by a 3d gaussian kernel. With `inverse`, the weights are based on the inverse of the distance.",
189
189
"default": "inverse",
190
190
},
191
191
"kernel": {
192
192
"type": "float",
193
193
"necessary": False,
194
-
"help": "TODO",
194
+
"help": "With method `sphere`, this is the size of the sphere. With method `gaussian`, this is the size of the sigma of the 3D weighting kernel. With method `inverse`, this is the exponent (1 -> linear, 2 -> quadratic).",
0 commit comments