While I am a musician, I am not an audio engineer by any stretch of the imagination.
- According to this definition ( designIIRLowpassHighOrderButterworthMethod ) is used in cascaded IIRFilters.
What exactly are cascaded IIRFilters?
-
I understand the definition of “Order” (the last parameter) of designIIRLowpassHighOrderButterworthMethod. However, how does this translate to actual code?
using filter = dsp::ProcessorDuplicator<dsp::IIR::Filter, dsp::IIR::Coefficients>;
using CutFilter = juce::dsp::ProcessorChain<filter, filter, filter, filter>;
Is this an example of a 4th order filter? (Pardon if I don’t have the terminology right.
- MakeLowPass deals with “Quality”. What is the difference between “Quality” and “Order”?
My ultimate goal is to control db/Octave.
