|
LMMS
|
#include <juce_FIRFilter.h>
Public Types | |
| using | Ptr = ReferenceCountedObjectPtr<Coefficients> |
| Public Types inherited from juce::dsp::ProcessorState | |
| using | Ptr = ReferenceCountedObjectPtr<ProcessorState> |
Public Attributes | |
| Array< NumericType > | coefficients |
Additional Inherited Members | |
| Protected Member Functions inherited from juce::ReferenceCountedObject | |
| ReferenceCountedObject ()=default | |
| ReferenceCountedObject (const ReferenceCountedObject &) noexcept | |
| ReferenceCountedObject (ReferenceCountedObject &&) noexcept | |
| ReferenceCountedObject & | operator= (const ReferenceCountedObject &) noexcept |
| ReferenceCountedObject & | operator= (ReferenceCountedObject &&) noexcept |
| virtual | ~ReferenceCountedObject () |
| void | resetReferenceCount () noexcept |
A set of coefficients for use in an FIRFilter object.
@tags{DSP}
| using juce::dsp::FIR::Coefficients< NumericType >::Ptr = ReferenceCountedObjectPtr<Coefficients> |
The Coefficients structure is ref-counted, so this is a handy type that can be used as a pointer to one.
|
inline |
Creates a null set of coefficients (which will produce silence).
|
inline |
Creates a null set of coefficients of a given size.
|
inline |
Creates a set of coefficients from an array of samples.
|
default |
|
default |
|
inlinenoexcept |
Returns the filter order associated with the coefficients.
|
noexcept |
Returns the magnitude frequency response of the filter for a given frequency and sample rate.
|
noexcept |
Returns the magnitude frequency response of the filter for a given frequency array and sample rate.
|
noexcept |
Returns the phase frequency response of the filter for a given frequency and sample rate.
|
noexcept |
Returns the phase frequency response of the filter for a given frequency array and sample rate.
|
inlinenoexcept |
Returns a raw data pointer to the coefficients.
|
inlinenoexcept |
Returns a raw data pointer to the coefficients.
|
noexcept |
Scales the values of the FIR filter with the sum of the squared coefficients.
|
default |
|
default |
| Array<NumericType> juce::dsp::FIR::Coefficients< NumericType >::coefficients |
The raw coefficients. You should leave these numbers alone unless you really know what you're doing.