I am using the mne_feature for feature extraction: mne_features.univariate.compute_pow_freq_bands
X.shape
: (23528, 18, 30000)
import mne_features
mne_features.univariate.compute_pow_freq_bands(100,X[0])
this is for the first epoch X[0] , it will work.
However, if i ran the following:
mne_features.univariate.compute_pow_freq_bands(100,X)
it will not work.dimention not match in the error
my question is, is there a function to extraction the power_freq_bands for all epochs in one time?