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.
我在教程和论文中看到 EEGLab 中有巴特沃斯高通滤波器。但是,我没有它,也无法在 EEGLAB 扩展中找到它。任何想法如何得到它?
谢谢!
我从未在 eeglab 中遇到过巴特沃斯过滤器选项(在我的 v2019.1 eeglab 中也没有看到)。也许他们只是添加了它,或者可能有一些我不知道的外部插件,但我个人只是使用 Matlab 函数。例如:
[b, a] = butter(order, cutoff/Fs, 'high'); data = filter(b, a, data);
请参阅 matlab 对黄油和过滤器的帮助。