- MNE version: 1.8.0
- operating system: Windows 11
Hello everyone, I’m new to MNE-python and attempt to simulate MEG signals. I’ve installed the mne package, and copied script from the tutorial example Corrupt known signal with point spread. An AssersionError occurs when Loading the MEG data in
raw = mne.io.read_raw_fif(data_path / “MEG” / “sample” / “sample_audvis_raw.fif”)
with error message
AssertionError <code object times at 0x00000162758E9BB0, file “d:\Anaconda\envs\mne\Lib\site-packages\mne\io\base.py”, line 1893> != <code object _arange_div at 0x00000162723C16B0, file “d:\Anaconda\envs\mne\Lib\site-packages\mne\utils\numerics.py”, line 1065>
KeyError: (1065, ‘d:\Anaconda\envs\mne\Lib\site-packages\mne\utils\numerics.py’, <code object _arange_div at 0x00000162723C16B0, file “d:\Anaconda\envs\mne\Lib\site-packages\mne\utils\numerics.py”, line 1065>)
It seems that there are inconsistency between file base.py
and numerics.py
. I’ve searched in the forum but found no similar issues. How can I fix it? Thanks!