Cofluctuations
cofluct(series, size, k=1)
Run cofluctuation analysis for BOLD signal.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
series |
double
|
BOLD signal array for all parcels/voxels in the format [N, Tmax]. |
required |
size |
int
|
Size of window. |
required |
Returns:
Name | Type | Description |
---|---|---|
double | Cofluctuation matrix for all parcels/voxels in the format [N, N, Tmax]. |
References
.. [1] Esfahlani, F. Z. et al. (2020) ‘High-amplitude cofluctuations in cortical activity drive functional connectivity’, Proceedings of the National Academy of Sciences of the United States of America, 117(45), pp. 28393–28401. doi: 10.1073/pnas.2005531117.
.. [2] Faskowitz, J. et al. (2020) ‘Edge-centric functional network representations of human cerebral cortex reveal overlapping system-level architecture’, Nature Neuroscience. Springer US, 23(12), pp. 1644–1654. doi: 10.1038/s41593-020-00719-y.
Source code in dynfc/cofluct.py
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
|