Fft<T>.Forward Transform In Place Method
Definition
Namespace: Extreme.Mathematics.SignalProcessing
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Forward | Computes the discrete Fourier transform of a complex signal in place. |
Forward | Computes the discrete Fourier transform of a complex signal in place. |
Forward | Computes the discrete Fourier transform of a complex signal in place. |
ForwardTransformInPlace(ArraySlice<Complex<T>>)
Computes the discrete Fourier transform of a complex signal in place.
public abstract void ForwardTransformInPlace(
ArraySlice<Complex<T>> input
)
Parameters
- input ArraySlice<Complex<T>>
- On input, a comples ArraySlice<T> containing the input signal. On return, the forward transform of the input.
Exceptions
ArgumentNullException | input is null. |
ForwardTransformInPlace(DenseVector<Complex<T>>)
Computes the discrete Fourier transform of a complex signal in place.
public void ForwardTransformInPlace(
DenseVector<Complex<T>> input
)
Parameters
- input DenseVector<Complex<T>>
- On input, a dense complex vector containing the input signal. On return, the forward transform of the input.
Exceptions
ArgumentNullException | input is null. |
ForwardTransformInPlace(Vector<Complex<T>>)
Computes the discrete Fourier transform of a complex signal in place.
public void ForwardTransformInPlace(
Vector<Complex<T>> input
)
Parameters
Exceptions
ArgumentNullException | input is null. |