Closed kouichi-c-nakamura closed 5 years ago
The comment is fixed. In actuality, I perform
Threshold = qqFactor*S, S = median(abs(x)) / 0.6745
since median(x)==0
after performing high-pass filtering operation (see line3242 inirc.m
).
The median is estimated after subsampling the recording (100,000 samples) for each channel.
Thanks for the swift response!
Hi,
In
default.prm
,qqFactor
is defined asQuiroga (2004) refers to Donoho and Johnstone (1994) and that paper says:
So, I'm wondering if the above description should be corrected as
in other words, we may need
abs
, and also to make it MATLAB friendly usemedian
instead ofmed
?