Rescale data import from fieldtrip

You can use raw.apply_function() for this purpose. MNE expects the unit of EEG signals to be V, so because your data is presumably in µV you could convert it like this:

raw.apply_function(lambda x: x * 1e-6)
2 Likes