TMatrix.FFT Method

Computes the nn-point discrete Fourier transform (DFT) of this dIn vector using a fast Fourier transform (FFT) algorithm.

Definition

Namespace: SMath.Math.Numeric
Assembly: SMath.Math.Numeric (in SMath.Math.Numeric.dll) Version: 1.73.9126.0
C#
public TMatrix FFT(
	double[] dIn,
	int nn,
	int beginData
)

Parameters

dIn  Double[]
Vector to perform Fourier transform for.
nn  Int32
Transform length.
beginData  Int32
Dimension to perform Fourier transform along.

Return Value

TMatrix
The nn-point discrete Fourier transform (DFT) of this dIn. The same size as this dIn.

See Also