Loading...
Searching...
No Matches
Classes | Public Types | Static Public Member Functions | List of all members
dsp::FilterDesign< FloatType > Struct Template Reference

This class provides a set of functions which generates FIR::Coefficients and IIR::Coefficients, of high-order low-pass filters. More...

#include <juce_FilterDesign.h>

Classes

struct  IIRPolyphaseAllpassStructure
 The structure returned by the function designIIRLowpassHalfBandPolyphaseAllpassMethod. More...
 

Public Types

using FIRCoefficientsPtr = typename FIR::Coefficients<FloatType>::Ptr
 
using IIRCoefficients = typename IIR::Coefficients<FloatType>
 
using WindowingMethod = typename WindowingFunction<FloatType>::WindowingMethod
 

Static Public Member Functions

static FIRCoefficientsPtr designFIRLowpassWindowMethod (FloatType frequency, double sampleRate, size_t order, WindowingMethod type, FloatType beta=static_cast< FloatType >(2))
 This method generates a FIR::Coefficients for a low-pass filter, using the windowing design method, applied to a sinc impulse response.
 
static FIRCoefficientsPtr designFIRLowpassKaiserMethod (FloatType frequency, double sampleRate, FloatType normalisedTransitionWidth, FloatType amplitudedB)
 This a variant of the function designFIRLowpassWindowMethod, which allows the user to specify a transition width and a negative gain in dB, to get a low-pass filter using the Kaiser windowing function, with calculated values of the filter order and of the beta parameter, to satisfy the constraints.
 
static FIRCoefficientsPtr designFIRLowpassTransitionMethod (FloatType frequency, double sampleRate, size_t order, FloatType normalisedTransitionWidth, FloatType spline)
 This method is also a variant of the function designFIRLowpassWindowMethod, using a rectangular window as a basis, and a spline transition between the pass band and the stop band, to reduce the Gibbs phenomenon.
 
static FIRCoefficientsPtr designFIRLowpassLeastSquaresMethod (FloatType frequency, double sampleRate, size_t order, FloatType normalisedTransitionWidth, FloatType stopBandWeight)
 This method generates a FIR::Coefficients for a low-pass filter, by minimizing the average error between the generated filter and an ideal one using the least squares error criterion and matrices operations.
 
static FIRCoefficientsPtr designFIRLowpassHalfBandEquirippleMethod (FloatType normalisedTransitionWidth, FloatType amplitudedB)
 This method generates a FIR::Coefficients for a low-pass filter, with a cutoff frequency at half band, using an algorithm described in the article "Design of Half-Band FIR Filters for Signal Compression" from Pavel Zahradnik, to get an equiripple like high order FIR filter, without the need of an iterative method and convergence failure risks.
 
static ReferenceCountedArray< IIRCoefficientsdesignIIRLowpassHighOrderButterworthMethod (FloatType frequency, double sampleRate, FloatType normalisedTransitionWidth, FloatType passbandAmplitudedB, FloatType stopbandAmplitudedB)
 This method returns an array of IIR::Coefficients, made to be used in cascaded IIRFilters, providing a minimum phase low-pass filter without any ripple in the pass band and in the stop band.
 
static ReferenceCountedArray< IIRCoefficientsdesignIIRLowpassHighOrderButterworthMethod (FloatType frequency, double sampleRate, int order)
 This method returns an array of IIR::Coefficients, made to be used in cascaded IIRFilters, providing a minimum phase low-pass filter without any ripple in the pass band and in the stop band.
 
static ReferenceCountedArray< IIRCoefficientsdesignIIRHighpassHighOrderButterworthMethod (FloatType frequency, double sampleRate, int order)
 This method returns an array of IIR::Coefficients, made to be used in cascaded IIRFilters, providing a minimum phase high-pass filter without any ripple in the pass band and in the stop band.
 
static ReferenceCountedArray< IIRCoefficientsdesignIIRLowpassHighOrderChebyshev1Method (FloatType frequency, double sampleRate, FloatType normalisedTransitionWidth, FloatType passbandAmplitudedB, FloatType stopbandAmplitudedB)
 This method returns an array of IIR::Coefficients, made to be used in cascaded IIRFilters, providing a minimum phase low-pass filter without any ripple in the stop band only.
 
static ReferenceCountedArray< IIRCoefficientsdesignIIRLowpassHighOrderChebyshev2Method (FloatType frequency, double sampleRate, FloatType normalisedTransitionWidth, FloatType passbandAmplitudedB, FloatType stopbandAmplitudedB)
 This method returns an array of IIR::Coefficients, made to be used in cascaded IIRFilters, providing a minimum phase low-pass filter without any ripple in the pass band only.
 
static ReferenceCountedArray< IIRCoefficientsdesignIIRLowpassHighOrderEllipticMethod (FloatType frequency, double sampleRate, FloatType normalisedTransitionWidth, FloatType passbandAmplitudedB, FloatType stopbandAmplitudedB)
 This method returns an array of IIR::Coefficients, made to be used in cascaded IIR::Filters, providing a minimum phase low-pass filter with ripples in both the pass band and in the stop band.
 
static IIRPolyphaseAllpassStructure designIIRLowpassHalfBandPolyphaseAllpassMethod (FloatType normalisedTransitionWidth, FloatType stopbandAmplitudedB)
 This method generates arrays of IIR::Coefficients for a low-pass filter, with a cutoff frequency at half band, using an algorithm described in the article "Digital Signal Processing Schemes for efficient interpolation and decimation" from Pavel Valenzuela and Constantinides.
 

Detailed Description

template<typename FloatType>
struct dsp::FilterDesign< FloatType >

This class provides a set of functions which generates FIR::Coefficients and IIR::Coefficients, of high-order low-pass filters.

They can be used for processing directly audio as an equalizer, in resampling algorithms etc.

see FIRFilter::Coefficients, FIRFilter, WindowingFunction, IIRFilter::Coefficients, IIRFilter

Member Typedef Documentation

◆ FIRCoefficientsPtr

template<typename FloatType >
using dsp::FilterDesign< FloatType >::FIRCoefficientsPtr = typename FIR::Coefficients<FloatType>::Ptr

◆ IIRCoefficients

template<typename FloatType >
using dsp::FilterDesign< FloatType >::IIRCoefficients = typename IIR::Coefficients<FloatType>

◆ WindowingMethod

template<typename FloatType >
using dsp::FilterDesign< FloatType >::WindowingMethod = typename WindowingFunction<FloatType>::WindowingMethod

Member Function Documentation

◆ designFIRLowpassWindowMethod()

template<typename FloatType >
static FIRCoefficientsPtr dsp::FilterDesign< FloatType >::designFIRLowpassWindowMethod ( FloatType frequency,
double sampleRate,
size_t order,
WindowingMethod type,
FloatType beta = static_cast< FloatType >(2) )
static

This method generates a FIR::Coefficients for a low-pass filter, using the windowing design method, applied to a sinc impulse response.

It is one of the simplest method used to generate a high order low-pass filter, which has the downside of needing more coefficients than more complex method to perform a given attenuation in the stop band.

It generates linear phase filters coefficients.

Note: The flatTop WindowingMethod generates an impulse response with a maximum amplitude higher than one, and might be normalised if necessary depending on the applications.

Parameters
frequencythe cutoff frequency of the low-pass filter
sampleRatethe sample rate being used in the filter design
orderthe order of the filter
typethe type, must be a WindowingFunction::WindowingType
betaan optional additional parameter useful for the Kaiser windowing function

◆ designFIRLowpassKaiserMethod()

template<typename FloatType >
static FIRCoefficientsPtr dsp::FilterDesign< FloatType >::designFIRLowpassKaiserMethod ( FloatType frequency,
double sampleRate,
FloatType normalisedTransitionWidth,
FloatType amplitudedB )
static

This a variant of the function designFIRLowpassWindowMethod, which allows the user to specify a transition width and a negative gain in dB, to get a low-pass filter using the Kaiser windowing function, with calculated values of the filter order and of the beta parameter, to satisfy the constraints.

It generates linear phase filters coefficients.

Parameters
frequencythe cutoff frequency of the low-pass filter
sampleRatethe sample rate being used in the filter design
normalisedTransitionWidththe normalised size between 0 and 0.5 of the transition between the pass band and the stop band
amplitudedBthe maximum amplitude in dB expected in the stop band (must be negative)

◆ designFIRLowpassTransitionMethod()

template<typename FloatType >
static FIRCoefficientsPtr dsp::FilterDesign< FloatType >::designFIRLowpassTransitionMethod ( FloatType frequency,
double sampleRate,
size_t order,
FloatType normalisedTransitionWidth,
FloatType spline )
static

This method is also a variant of the function designFIRLowpassWindowMethod, using a rectangular window as a basis, and a spline transition between the pass band and the stop band, to reduce the Gibbs phenomenon.

It generates linear phase filters coefficients.

Parameters
frequencythe cutoff frequency of the low-pass filter
sampleRatethe sample rate being used in the filter design
orderthe order of the filter
normalisedTransitionWidththe normalised size between 0 and 0.5 of the transition between the pass band and the stop band
splinebetween 1.0 and 4.0, indicates how much the transition is curved, with 1.0 meaning a straight line

◆ designFIRLowpassLeastSquaresMethod()

template<typename FloatType >
static FIRCoefficientsPtr dsp::FilterDesign< FloatType >::designFIRLowpassLeastSquaresMethod ( FloatType frequency,
double sampleRate,
size_t order,
FloatType normalisedTransitionWidth,
FloatType stopBandWeight )
static

This method generates a FIR::Coefficients for a low-pass filter, by minimizing the average error between the generated filter and an ideal one using the least squares error criterion and matrices operations.

It generates linear phase filters coefficients.

Parameters
frequencythe cutoff frequency of the low-pass filter
sampleRatethe sample rate being used in the filter design
orderthe order of the filter
normalisedTransitionWidththe normalised size between 0 and 0.5 of the transition between the pass band and the stop band
stopBandWeightbetween 1.0 and 100.0, indicates how much we want attenuation in the stop band, against some oscillation in the pass band

◆ designFIRLowpassHalfBandEquirippleMethod()

template<typename FloatType >
static FIRCoefficientsPtr dsp::FilterDesign< FloatType >::designFIRLowpassHalfBandEquirippleMethod ( FloatType normalisedTransitionWidth,
FloatType amplitudedB )
static

This method generates a FIR::Coefficients for a low-pass filter, with a cutoff frequency at half band, using an algorithm described in the article "Design of Half-Band FIR Filters for Signal Compression" from Pavel Zahradnik, to get an equiripple like high order FIR filter, without the need of an iterative method and convergence failure risks.

It generates linear phase filters coefficients.

Parameters
normalisedTransitionWidththe normalised size between 0 and 0.5 of the transition between the pass band and the stop band
amplitudedBthe maximum amplitude in dB expected in the stop band (must be negative)

◆ designIIRLowpassHighOrderButterworthMethod() [1/2]

template<typename FloatType >
static ReferenceCountedArray< IIRCoefficients > dsp::FilterDesign< FloatType >::designIIRLowpassHighOrderButterworthMethod ( FloatType frequency,
double sampleRate,
FloatType normalisedTransitionWidth,
FloatType passbandAmplitudedB,
FloatType stopbandAmplitudedB )
static

This method returns an array of IIR::Coefficients, made to be used in cascaded IIRFilters, providing a minimum phase low-pass filter without any ripple in the pass band and in the stop band.

The algorithms are based on "Lecture Notes on Elliptic Filter Design" by Sophocles J. Orfanidis.

Parameters
frequencythe cutoff frequency of the low-pass filter
sampleRatethe sample rate being used in the filter design
normalisedTransitionWidththe normalised size between 0 and 0.5 of the transition between the pass band and the stop band
passbandAmplitudedBthe highest gain in dB expected in the pass band (must be negative)
stopbandAmplitudedBthe gain in dB expected in the stop band (must be negative)

◆ designIIRLowpassHighOrderButterworthMethod() [2/2]

template<typename FloatType >
static ReferenceCountedArray< IIRCoefficients > dsp::FilterDesign< FloatType >::designIIRLowpassHighOrderButterworthMethod ( FloatType frequency,
double sampleRate,
int order )
static

This method returns an array of IIR::Coefficients, made to be used in cascaded IIRFilters, providing a minimum phase low-pass filter without any ripple in the pass band and in the stop band.

Parameters
frequencythe cutoff frequency of the low-pass filter
sampleRatethe sample rate being used in the filter design
orderthe order of the resulting IIR filter, providing an attenuation of -6 dB times order / octave

◆ designIIRHighpassHighOrderButterworthMethod()

template<typename FloatType >
static ReferenceCountedArray< IIRCoefficients > dsp::FilterDesign< FloatType >::designIIRHighpassHighOrderButterworthMethod ( FloatType frequency,
double sampleRate,
int order )
static

This method returns an array of IIR::Coefficients, made to be used in cascaded IIRFilters, providing a minimum phase high-pass filter without any ripple in the pass band and in the stop band.

Parameters
frequencythe cutoff frequency of the high-pass filter
sampleRatethe sample rate being used in the filter design
orderthe order of the resulting IIR filter, providing an attenuation of -6 dB times order / octave

◆ designIIRLowpassHighOrderChebyshev1Method()

template<typename FloatType >
static ReferenceCountedArray< IIRCoefficients > dsp::FilterDesign< FloatType >::designIIRLowpassHighOrderChebyshev1Method ( FloatType frequency,
double sampleRate,
FloatType normalisedTransitionWidth,
FloatType passbandAmplitudedB,
FloatType stopbandAmplitudedB )
static

This method returns an array of IIR::Coefficients, made to be used in cascaded IIRFilters, providing a minimum phase low-pass filter without any ripple in the stop band only.

The algorithms are based on "Lecture Notes on Elliptic Filter Design" by Sophocles J. Orfanidis.

Parameters
frequencythe cutoff frequency of the low-pass filter
sampleRatethe sample rate being used in the filter design
normalisedTransitionWidththe normalised size between 0 and 0.5 of the transition between the pass band and the stop band
passbandAmplitudedBthe highest amplitude in dB expected in the pass band (must be negative)
stopbandAmplitudedBthe lowest amplitude in dB expected in the stop band (must be negative)

◆ designIIRLowpassHighOrderChebyshev2Method()

template<typename FloatType >
static ReferenceCountedArray< IIRCoefficients > dsp::FilterDesign< FloatType >::designIIRLowpassHighOrderChebyshev2Method ( FloatType frequency,
double sampleRate,
FloatType normalisedTransitionWidth,
FloatType passbandAmplitudedB,
FloatType stopbandAmplitudedB )
static

This method returns an array of IIR::Coefficients, made to be used in cascaded IIRFilters, providing a minimum phase low-pass filter without any ripple in the pass band only.

The algorithms are based on "Lecture Notes on Elliptic Filter Design" by Sophocles J. Orfanidis.

Parameters
frequencythe cutoff frequency of the low-pass filter
sampleRatethe sample rate being used in the filter design
normalisedTransitionWidththe normalised size between 0 and 0.5 of the transition between the pass band and the stop band
passbandAmplitudedBthe highest amplitude in dB expected in the pass band (must be negative)
stopbandAmplitudedBthe lowest amplitude in dB expected in the stop band (must be negative)

◆ designIIRLowpassHighOrderEllipticMethod()

template<typename FloatType >
static ReferenceCountedArray< IIRCoefficients > dsp::FilterDesign< FloatType >::designIIRLowpassHighOrderEllipticMethod ( FloatType frequency,
double sampleRate,
FloatType normalisedTransitionWidth,
FloatType passbandAmplitudedB,
FloatType stopbandAmplitudedB )
static

This method returns an array of IIR::Coefficients, made to be used in cascaded IIR::Filters, providing a minimum phase low-pass filter with ripples in both the pass band and in the stop band.

The algorithms are based on "Lecture Notes on Elliptic Filter Design" by Sophocles J. Orfanidis.

Parameters
frequencythe cutoff frequency of the low-pass filter
sampleRatethe sample rate being used in the filter design
normalisedTransitionWidththe normalised size between 0 and 0.5 of the transition between the pass band and the stop band
passbandAmplitudedBthe highest amplitude in dB expected in the pass band (must be negative)
stopbandAmplitudedBthe lowest amplitude in dB expected in the stop band (must be negative)

◆ designIIRLowpassHalfBandPolyphaseAllpassMethod()

template<typename FloatType >
static IIRPolyphaseAllpassStructure dsp::FilterDesign< FloatType >::designIIRLowpassHalfBandPolyphaseAllpassMethod ( FloatType normalisedTransitionWidth,
FloatType stopbandAmplitudedB )
static

This method generates arrays of IIR::Coefficients for a low-pass filter, with a cutoff frequency at half band, using an algorithm described in the article "Digital Signal Processing Schemes for efficient interpolation and decimation" from Pavel Valenzuela and Constantinides.

The result is a IIRPolyphaseAllpassStructure object.

The two members of this structure directPath and delayedPath are arrays of IIR::Coefficients, made of polyphase second order allpass filters and an additional delay in the second array, that can be used in cascaded filters processed in two parallel paths, which must be summed at the end to get the high order efficient low-pass filtering.

The gain of the resulting pass-band is 6 dB, so don't forget to compensate it if you want to use that method for something else than two times oversampling.

Parameters
normalisedTransitionWidththe normalised size between 0 and 0.5 of the transition between the pass band and the stop band
stopbandAmplitudedBthe maximum amplitude in dB expected in the stop band (must be negative)

The documentation for this struct was generated from the following file:
linkedin facebook pinterest youtube rss twitter instagram facebook-blank rss-blank linkedin-blank pinterest youtube twitter instagram