Fft<T>.Forward Transform In Place Method
Definition
Namespace: Numerics.NET.SignalProcessing
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
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. |
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 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
Argument | 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
Argument | 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
Argument | input is null. |
ForwardTransformInPlace(Span<Complex<T>>, Int32)
Computes the discrete Fourier transform of a complex signal in place.
public abstract void ForwardTransformInPlace(
Span<Complex<T>> input,
int inputStride
)
Parameters
Exceptions
Argument | input is null. |