0

我正在编写一些脚本,我使用 EEGLAB 包中的几个函数来执行 matlab。这些函数中的大多数可以抑制 GUI 显示,例如使用f( ... 'gui','off')或使用同一函数的不同版本。但是,我不知道如何为函数执行此操作pop_eegfiltnew()。两个类似的函数是eegfilt(),这似乎是该函数的过时版本,firfilt()但是,pop_eegfiltnew()它比其他两个具有更多的参数,因此它们在函数方面肯定不一样。

任何人都知道如何解决这个问题?

4

1 回答 1

2

If you supply enough arguments to pop_eegfiltnew it does not pop up a GUI.
For example if you wanted to filter your signal 1 Hz highpass you would:

 EEG = pop_eegfiltnew(EEG, 1, 0);

This is because the first argument of pop_eegfilt is EEG structure, the second is locutoff (lower edge of the passband) and the third is hicutoff (higher edge of the passband).

于 2015-01-31T02:17:41.283 回答