JUCE-7.0.12-0-g4f43011b96 JUCE-7.0.12-0-g4f43011b96
JUCE — C++ application framework with suport for VST, VST3, LV2 audio plug-ins

« « « Anklang Documentation
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Public Attributes | List of all members
juce::dsp::FIR::Coefficients< NumericType > Struct Template Reference

A set of coefficients for use in an FIRFilter object. More...

#include "juce_FIRFilter.h"

Inheritance diagram for juce::dsp::FIR::Coefficients< NumericType >:
juce::dsp::ProcessorState juce::ReferenceCountedObject

Public Types

using Ptr = ReferenceCountedObjectPtr< Coefficients >
 The Coefficients structure is ref-counted, so this is a handy type that can be used as a pointer to one.
 
- Public Types inherited from juce::dsp::ProcessorState
using Ptr = ReferenceCountedObjectPtr< ProcessorState >
 The ProcessorState structure is ref-counted, so this is a handy type that can be used as a pointer to one.
 

Public Member Functions

 Coefficients ()
 Creates a null set of coefficients (which will produce silence).
 
 Coefficients (size_t size)
 Creates a null set of coefficients of a given size.
 
 Coefficients (const NumericType *samples, size_t numSamples)
 Creates a set of coefficients from an array of samples.
 
 Coefficients (const Coefficients &)=default
 
 Coefficients (Coefficients &&)=default
 
Coefficientsoperator= (const Coefficients &)=default
 
Coefficientsoperator= (Coefficients &&)=default
 
size_t getFilterOrder () const noexcept
 Returns the filter order associated with the coefficients.
 
double getMagnitudeForFrequency (double frequency, double sampleRate) const noexcept
 Returns the magnitude frequency response of the filter for a given frequency and sample rate.
 
void getMagnitudeForFrequencyArray (double *frequencies, double *magnitudes, size_t numSamples, double sampleRate) const noexcept
 Returns the magnitude frequency response of the filter for a given frequency array and sample rate.
 
double getPhaseForFrequency (double frequency, double sampleRate) const noexcept
 Returns the phase frequency response of the filter for a given frequency and sample rate.
 
void getPhaseForFrequencyArray (double *frequencies, double *phases, size_t numSamples, double sampleRate) const noexcept
 Returns the phase frequency response of the filter for a given frequency array and sample rate.
 
NumericTypegetRawCoefficients () noexcept
 Returns a raw data pointer to the coefficients.
 
const NumericTypegetRawCoefficients () const noexcept
 Returns a raw data pointer to the coefficients.
 
void normalise () noexcept
 Scales the values of the FIR filter with the sum of the squared coefficients.
 
- Public Member Functions inherited from juce::ReferenceCountedObject
void incReferenceCount () noexcept
 Increments the object's reference count.
 
void decReferenceCount () noexcept
 Decreases the object's reference count.
 
bool decReferenceCountWithoutDeleting () noexcept
 Decreases the object's reference count.
 
int getReferenceCount () const noexcept
 Returns the object's current reference count.
 

Public Attributes

Array< NumericTypecoefficients
 The raw coefficients.
 

Additional Inherited Members

- Protected Member Functions inherited from juce::ReferenceCountedObject
 ReferenceCountedObject ()=default
 Creates the reference-counted object (with an initial ref count of zero).
 
 ReferenceCountedObject (const ReferenceCountedObject &) noexcept
 Copying from another object does not affect this one's reference-count.
 
 ReferenceCountedObject (ReferenceCountedObject &&) noexcept
 Copying from another object does not affect this one's reference-count.
 
ReferenceCountedObjectoperator= (const ReferenceCountedObject &) noexcept
 Copying from another object does not affect this one's reference-count.
 
ReferenceCountedObjectoperator= (ReferenceCountedObject &&) noexcept
 Copying from another object does not affect this one's reference-count.
 
virtual ~ReferenceCountedObject ()
 Destructor.
 
void resetReferenceCount () noexcept
 Resets the reference count to zero without deleting the object.
 

Detailed Description

template<typename NumericType>
struct juce::dsp::FIR::Coefficients< NumericType >

A set of coefficients for use in an FIRFilter object.

See also
FIRFilter

@tags{DSP}

Definition at line 213 of file juce_FIRFilter.h.

Member Typedef Documentation

◆ Ptr

The Coefficients structure is ref-counted, so this is a handy type that can be used as a pointer to one.

Definition at line 233 of file juce_FIRFilter.h.

Constructor & Destructor Documentation

◆ Coefficients() [1/3]

Creates a null set of coefficients (which will produce silence).

Definition at line 217 of file juce_FIRFilter.h.

◆ Coefficients() [2/3]

template<typename NumericType >
juce::dsp::FIR::Coefficients< NumericType >::Coefficients ( size_t  size)

Creates a null set of coefficients of a given size.

Definition at line 220 of file juce_FIRFilter.h.

◆ Coefficients() [3/3]

template<typename NumericType >
juce::dsp::FIR::Coefficients< NumericType >::Coefficients ( const NumericType samples,
size_t  numSamples 
)

Creates a set of coefficients from an array of samples.

Definition at line 223 of file juce_FIRFilter.h.

Member Function Documentation

◆ getFilterOrder()

template<typename NumericType >
size_t juce::dsp::FIR::Coefficients< NumericType >::getFilterOrder ( ) const
noexcept

Returns the filter order associated with the coefficients.

Definition at line 237 of file juce_FIRFilter.h.

◆ getRawCoefficients() [1/2]

template<typename NumericType >
const NumericType * juce::dsp::FIR::Coefficients< NumericType >::getRawCoefficients ( ) const
noexcept

Returns a raw data pointer to the coefficients.

Definition at line 265 of file juce_FIRFilter.h.

◆ getRawCoefficients() [2/2]

template<typename NumericType >
NumericType * juce::dsp::FIR::Coefficients< NumericType >::getRawCoefficients ( )
noexcept

Returns a raw data pointer to the coefficients.

Definition at line 262 of file juce_FIRFilter.h.

Member Data Documentation

◆ coefficients

The raw coefficients.

You should leave these numbers alone unless you really know what you're doing.

Definition at line 275 of file juce_FIRFilter.h.


The documentation for this struct was generated from the following file: