ManagedFft.BackwardTransform Method

Definition

Namespace: Numerics.NET.SignalProcessing
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

BackwardTransform(ArraySlice<Complex<T>>, ArraySlice<T>) 
BackwardTransform(Vector<Complex<T>>, Vector<T>) 
BackwardTransform(ComplexConjugateSignalVector<T>) Computes the discrete Fourier transform of a real signal and returns the result.
BackwardTransform(Vector<Complex<T>>) Computes the discrete Fourier transform of a complex signal and returns the result..
BackwardTransform(ArraySlice<Complex<T>>, ArraySlice<T>) Computes the discrete Fourier transform of a real signal.
BackwardTransform(ComplexConjugateSignalVector<T>, DenseVector<T>) Computes the discrete Fourier transform of a real signal.
BackwardTransform(DenseVector<Complex<T>>, DenseVector<Complex<T>>) Computes the discrete Fourier transform of a complex signal.
BackwardTransform(Vector<Complex<T>>, Vector<T>) Computes the discrete Fourier transform of a real signal.
BackwardTransform(Vector<Complex<T>>, Vector<T>, RealFftFormat) Computes the inverse discrete Fourier transform of a real signal.
BackwardTransform(ReadOnlySpan<Complex<Double>>, Int32, Span<Complex<Double>>, Int32) Computes the discrete Fourier transform of a real signal.
BackwardTransform(ReadOnlySpan<Complex<Double>>, Int32, Span<Double>, Int32) Computes the discrete Fourier transform of a real signal.

BackwardTransform(ReadOnlySpan<Complex<Double>>, Int32, Span<Complex<Double>>, Int32)

Computes the discrete Fourier transform of a real signal.
C#
public override void BackwardTransform(
	ReadOnlySpan<Complex<double>> input,
	int inputStride,
	Span<Complex<double>> output,
	int outputStride
)

Parameters

input  ReadOnlySpan<Complex<Double>>
A complex span that contains the transformed signal.
inputStride  Int32
The distance between successive elements in input.
output  Span<Complex<Double>>
A real span to contain the original signal.
outputStride  Int32
The distance between successive elements in output.

Exceptions

ArgumentNullException

input is null.

-or-

output is null.

DimensionMismatchException

The length of input does not equal the length of output.

BackwardTransform(ReadOnlySpan<Complex<Double>>, Int32, Span<Double>, Int32)

Computes the discrete Fourier transform of a real signal.
C#
public override void BackwardTransform(
	ReadOnlySpan<Complex<double>> input,
	int inputStride,
	Span<double> output,
	int outputStride
)

Parameters

input  ReadOnlySpan<Complex<Double>>
A complex span that contains the transformed signal.
inputStride  Int32
The distance between successive elements in input.
output  Span<Double>
A real span to contain the original signal.
outputStride  Int32
The distance between successive elements in output.

Exceptions

ArgumentNullException

input is null.

-or-

output is null.

DimensionMismatchException

The length of input does not equal the length of output.

See Also