Hi there!
I am trying to calculate the PSD like this:
psds, freq = mne.time_frequency.psd_array_welch(epochs, sfreq=epochs.info['sfreq'], fmin = 2, fmax = 40, n_fft = int(2*epochs.info['sfreq']), n_overlap= int(epochs.info['sfreq']/2), verbose= 'warning')
It returns me the psds and also the frequency bins, so all seems well so far.
But the values returned are extremely small (e.g. 3.58183353e-12, 3.12845131e-14, ā¦)
So Iām wondering, what kind of unit does the returned psds have?
Is it \mu ^2 V/Hz?
Thanks for your help already!