Click or drag to resize

RealDFT1DComputeBackward Method

Computes the backward (inverse) DFT of complex conjugate-symmetric sequence.

Namespace:  FinMath.SignalProcessing
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
public void ComputeBackward(
	Complex[] input,
	double[] output
)

Parameters

input
Type: FinMathComplex
The complex conjugate-symmetric sequence.
Remarks
The input complex sequence is assumed to be conjugate-symmetric:
1input[0].Imaginary = 0.0
and
1input[i] = Complex.Conjugate(input[n - i])
where n - is the length of the sequence, and i = 1 .. n - 1.
Thus, the elements of second half of the sequence remains unreferenced.
output
Type: SystemDouble
The real sequence - the result of IDFT.
See Also