Click or drag to resize

FFTConfiguration Constructor

Creates an instance of a 1D FFT configuration. This configuration instance can then be used to create a DoubleGeneral1DFFT instance.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public FFTConfiguration(
	FFTDirection direction,
	FFTPrecision precision,
	FFTDomain domain,
	int dimension,
	int fftlength
)

Parameters

direction  FFTDirection
FFT direction; either forward or backward.
precision  FFTPrecision
Precision of FFT; either double or float.
domain  FFTDomain
Forward domain of FFT; either complex or real.
dimension  Int32
FFT dimension.
fftlength  Int32
Length of 1D FFT, not restricted to powers of 2.
See Also