mne version 1.8.0
windows 11
Hi experts,
I am a biginner of mne.
I study time_frequency.py(mne-python/mne/minimum_norm/time_frequency).
In def _single_epoch_tfr, line432, script is plv_f /= np.abs(plv_f).
Please let me know the meaning, background, source of “plv_f /= np.abs(plv_f).”
The reports I know does not this division.
Thank you for your response. I don’t understand the correct definition of Phase Locking Value(PLV), Phase Locking Factor(PLF), the Evoked Power.
Then,
(1) If the value is divided by the absolute of coefficients of the complex, the value will become PLF ?
(2) PLF is applied to a single channel(electrode), PLV is applied to 2 channels, not 1 channel. This is correct ?
(3) Please let me know how to calculate the evoked power for 1 channel.
I think plf_f is a complex number and dividing by it’s absolute value only amounts to applying a scaling factor that makes the amplitude span the range [0, 1]. In that respect, PLV is not converted to PLF when applying the normalization.
Assuming plv_f /= np.abs(plv_f) is equal to CSDxy/|CSDxy| this is just a method to obtain e^(i theta) where theta is the phase difference between x and y signal. By average CSDxy/|CSDxy| across epochs you get a plv value. I came to this conclusion from reading the following articles.