Minim
core | ugens | analysis
 

FourierTransform

inverse

Description

Performs an inverse transform of the frequency spectrum and places the result in buffer.

Signature

void inverse(float[] buffer)
void inverse(AudioBuffer buffer)
void inverse(float[] freqReal, float[] freqImag, float[] buffer)

Parameters

buffer — float[]: the buffer to place the result of the inverse transform in
buffer — AudioBuffer: the buffer to place the result of the inverse transform in
freqReal — float[]: the real part of the frequency spectrum
freqImag — float[]: the imaginary part the frequency spectrum
buffer — float[]: the buffer to place the inverse transform in

Returns

None

Related

FFT

Example

None available

Usage

Web & Application