KOP
run_multiPatKOP(RSsig, base=2, nBits=8, delt=0.392, flp=0.04, fhi=0.07, k=2)
Run KOP Routine for BOLD signal.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
RSsig |
ndarray
|
BOLD signal array for all parcels/voxels in the format [N, Tmax, Subs]. |
required |
delt |
TR sample. |
0.392
|
|
flp |
low threshold frequency of filter |
0.04
|
|
fhi |
high threshold frequency of filter |
0.07
|
|
k |
filter order |
2
|
Returns:
Name | Type | Description |
---|---|---|
tuple | phases : Phases array for all parcels/voxels in the format [N, Tmax, Subs]. sync : Synchronicity matrix for all parcels/voxels in the format [Tmax, Subs]. metastab : Leading eigenvector of synchornicity matrix [Subs]. |
References
.. [1]
Source code in dynfc/run_multiPatKOP.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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
|