Managed Fft 2DOf Single.Backward Transform Method
Definition
Namespace: Numerics.NET.SignalProcessing
Assembly: Numerics.NET.SinglePrecision (in Numerics.NET.SinglePrecision.dll) Version: 9.0.1
Assembly: Numerics.NET.SinglePrecision (in Numerics.NET.SinglePrecision.dll) Version: 9.0.1
Overload List
BackwardTransform(ReadOnlySpan<Complex<Single>>, Int32, Span<Complex<Single>>, Int32)
Computes the discrete Fourier transform of a complex signal.
public override void BackwardTransform(
ReadOnlySpan<Complex<float>> input,
int inputLeadingDimension,
Span<Complex<float>> output,
int outputLeadingDimension
)
Parameters
Exceptions
Invalid |
The FftDomain of the transform is not complex.
-or- The input and output are the same, but the transform was not set up for in place calculation |
BackwardTransform(ReadOnlySpan<Complex<Single>>, Int32, Span<Single>, Int32)
Computes the discrete Fourier transform of a real signal.
public override void BackwardTransform(
ReadOnlySpan<Complex<float>> input,
int inputLeadingDimension,
Span<float> output,
int outputLeadingDimension
)