AllenInstitute / MIES

Multichannel Igor Electrophysiology Suite
https://alleninstitute.github.io/MIES/user.html
Other
23 stars 7 forks source link

psx add more docu #1994

Open t-b opened 9 months ago

t-b commented 9 months ago

image with different lo/hi values of deconv and other psx filter parameters

t-b commented 9 months ago

psx: filterLow and filterHigh, used in PSX_FilterSweepData, passed to FilterIIR. It's help says

Create bandpass and bandreject filters by specifying both /HI and /LO. For a bandpass filter, set fLow >fHigh, and for a band reject filter, set fLow < fHigh.

and we enforce low > high so this is bandpass filter. WP: https://en.wikipedia.org/wiki/Band-pass_filter.

psxdeconvFilter: lowFreq and highFreq used in PSX_DeconvoluteSweepData, passed to FilterFIR, and we enforce

ASSERT(lowFrac < highFrac, "Expected a low pass filter with lowFrac < highFrac")

so this is a low-pass filter. WP: https://en.wikipedia.org/wiki/Low-pass_filter