Accord.Audio.ComplexSignal.BackwardFourierTransform C# (CSharp) Method

BackwardFourierTransform() public method

Applies backward fast Fourier transformation to the complex signal.
public BackwardFourierTransform ( ) : void
return void
        public void BackwardFourierTransform()
        {
            if (status == ComplexSignalStatus.FourierTransformed)
            {
                for (int i = 0; i < Channels; i++)
                {
                    Complex[] channel = GetChannel(i);
                    FourierTransform.FFT(channel, FourierTransform.Direction.Backward);
                    SetChannel(i, channel);
                }
                status = ComplexSignalStatus.Normal;
            }
        }