@@ -147,33 +147,23 @@ def voltage_fluctuation(potentials, numpy=True, method='loop'):
147147 \chi^2 \left( N \right) = \frac{\sigma_V^2}{ \frac{1}{N} \sum_{i=1}^N
148148 \sigma_{V_i}^2}
149149
150- Parameters
151- ----------
152- potentials : ndarray
153- The membrane potential matrix of the neuron group.
154- numpy: bool
155- Whether we use numpy array as the functional output.
156- If ``False``, this function can be JIT compiled.
157- method: str
158- The method to calculate all pairs of cross correlation.
159- Supports two kinds of methods: `loop` and `vmap`.
160- `vmap` method will consume much more memory.
161-
162- .. versionadded:: 2.2.3.4
163-
164-
165- Returns
166- -------
167- sync_index : float
168- The synchronization index.
169-
170- References
171- ----------
172150 .. [1] Golomb, D. and Rinzel J. (1993) Dynamics of globally coupled
173151 inhibitory neurons with heterogeneity. Phys. Rev. E 48:4810-4814.
174152 .. [2] Golomb D. and Rinzel J. (1994) Clustering in globally coupled
175153 inhibitory neurons. Physica D 72:259-282.
176154 .. [3] David Golomb (2007) Neuronal synchrony measures. Scholarpedia, 2(1):1347.
155+
156+ Args:
157+ potentials: The membrane potential matrix of the neuron group.
158+ numpy: Whether we use numpy array as the functional output. If ``False``, this function can be JIT compiled.
159+ method: The method to calculate all pairs of cross correlation.
160+ Supports two kinds of methods: `loop` and `vmap`.
161+ `vmap` method will consume much more memory.
162+
163+ .. versionadded:: 2.2.3.4
164+
165+ Returns:
166+ sync_index: The synchronization index.
177167 """
178168
179169 potentials = bm .as_jax (potentials )
0 commit comments