Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一个 python 程序将 edf 文件转换为 csv 文件。我没有从互联网上找到任何帮助材料。实际上由于某些原因,必须将 edf 文件转换为 csv 格式。提前致谢。
在 MNE-Python 中:
import numpy as np import mne edf = mne.io.read_raw_edf('your_edf_file.edf') header = ','.join(edf.ch_names) np.savetxt('your_csv_file.csv', edf.get_data().T, delimiter=',', header=header)
生成的 CSV 文件会很大!第一行是“标题”,包含每个通道的名称。下面的每一行都是一个时间点,每个通道记录的电压。