Replies: 1 comment 1 reply
-
looks good! If you have no idea what I'm talking about, open an issue, that's also useful. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently, it is possible to set the filter order via the
.config
list. For convenience, it would be nice to be able to set the filter rolloff (in dB/oct) instead (even though this is very easy to do manually - but it convenience always gets more users more quickly). I wrote a small function that does exactly that. Maybe you want to include it in a new version of eeguana.I currently use it like this:
eeg_filt_band_pass(..., .config=list(method="iir", type="butter", order=rollOffToOrder(24)))
but it could also be a separate parameter of the.config
list that setsorder
implicitly ifis.na(order)
andis.na(dB_Oct)==F
Beta Was this translation helpful? Give feedback.
All reactions