Click or drag to resize

FFTBase(FFTDirection, FFTPrecision, FFTDomain, Int32) Constructor

Base class constructor for all 1D discrete fourier transform classes.

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

Parameters

direction  FFTDirection
Direction of FFT, either forward or backward.
precision  FFTPrecision
Precision of FFT, either double or float.
domain  FFTDomain
Forward domain of FFT, either real or complex.
fftlength  Int32
Length of FFT.
Exceptions
ExceptionCondition
InvalidArgumentException Thrown if the indicated FFT length is less than 1.
See Also