Accord.Audio.Windows.Extensions.ForwardFourierTransform C# (CSharp) Method

ForwardFourierTransform() public static method

Applies forward fast Fourier transformation to a complex signal array.
public static ForwardFourierTransform ( this windows ) : void
windows this
return void
        public static void ForwardFourierTransform(this ComplexSignal[] windows)
        {
            foreach (ComplexSignal signal in windows)
                signal.ForwardFourierTransform();
        }