TMatrix.FFT Method
Computes the nn-point discrete Fourier transform (DFT) of this dIn vector using a fast Fourier transform (FFT) algorithm.
Namespace: SMath.Math.NumericAssembly: SMath.Math.Numeric (in SMath.Math.Numeric.dll) Version: 1.73.9126.0
public TMatrix FFT(
double[] dIn,
int nn,
int beginData
)
Public Function FFT (
dIn As Double(),
nn As Integer,
beginData As Integer
) As TMatrix
public:
TMatrix^ FFT(
array<double>^ dIn,
int nn,
int beginData
)
member FFT :
dIn : float[] *
nn : int *
beginData : int -> TMatrix
- dIn Double[]
- Vector to perform Fourier transform for.
- nn Int32
- Transform length.
- beginData Int32
- Dimension to perform Fourier transform along.
TMatrixThe
nn-point discrete Fourier transform (DFT) of this
dIn. The same size as this
dIn.