JUCE  v5.1.1-3-g1a0b28c73
JUCE API
FFT Class Reference

Performs a fast fourier transform. More...

#include <juce_FFT.h>

Collaboration diagram for FFT:

Public Member Functions

 FFT (int order)
 Initialises an object for performing forward and inverse FFT with the given size. More...
 
 ~FFT ()
 Destructor. More...
 
int getSize () const noexcept
 Returns the number of data points that this FFT was created to work with. More...
 
void perform (const Complex< float > *input, Complex< float > *output, bool inverse) const noexcept
 Performs an out-of-place FFT, either forward or inverse. More...
 
void performFrequencyOnlyForwardTransform (float *inputOutputData) const noexcept
 Takes an array and simply transforms it to the magnitude frequency response spectrum. More...
 
void performRealOnlyForwardTransform (float *inputOutputData) const noexcept
 Performs an in-place forward transform on a block of real data. More...
 
void performRealOnlyInverseTransform (float *inputOutputData) const noexcept
 Performs a reverse operation to data created in performRealOnlyForwardTransform(). More...
 

Private Attributes

ScopedPointer< Instance > engine
 
int size
 

Detailed Description

Performs a fast fourier transform.

This is only a simple low-footprint implementation and isn't tuned for speed - it may be useful for simple applications where one of the more complex FFT libraries would be overkill. (But in the future it may end up becoming optimised of course...)

The FFT class itself contains lookup tables, so there's some overhead in creating one, you should create and cache an FFT object for each size/direction of transform that you need, and re-use them to perform the actual operation.

Constructor & Destructor Documentation

◆ FFT()

FFT::FFT ( int  order)

Initialises an object for performing forward and inverse FFT with the given size.

The number of points the FFT will operate on will be 2 ^ order.

◆ ~FFT()

FFT::~FFT ( )

Destructor.

Member Function Documentation

◆ getSize()

int FFT::getSize ( ) const
inlinenoexcept

Returns the number of data points that this FFT was created to work with.

◆ perform()

void FFT::perform ( const Complex< float > *  input,
Complex< float > *  output,
bool  inverse 
) const
noexcept

Performs an out-of-place FFT, either forward or inverse.

The arrays must contain at least getSize() elements.

◆ performFrequencyOnlyForwardTransform()

void FFT::performFrequencyOnlyForwardTransform ( float *  inputOutputData) const
noexcept

Takes an array and simply transforms it to the magnitude frequency response spectrum.

This may be handy for things like frequency displays or analysis. The size of the array passed in must be 2 * getSize().

◆ performRealOnlyForwardTransform()

void FFT::performRealOnlyForwardTransform ( float *  inputOutputData) const
noexcept

Performs an in-place forward transform on a block of real data.

The size of the array passed in must be 2 * getSize(), and the first half should contain your raw input sample data. On return, the array will contain size complex real + imaginary parts data interleaved, and can be passed to performRealOnlyInverseTransform() in order to convert it back to reals.

◆ performRealOnlyInverseTransform()

void FFT::performRealOnlyInverseTransform ( float *  inputOutputData) const
noexcept

Performs a reverse operation to data created in performRealOnlyForwardTransform().

The size of the array passed in must be 2 * getSize(), containing size complex real and imaginary parts interleaved numbers. On return, the first half of the array will contain the reconstituted samples.

Member Data Documentation

◆ engine

ScopedPointer<Instance> FFT::engine
private

◆ size

int FFT::size
private

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