Constructs a forward 1D FFT instance by copying the configuration from another FFT instance.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public FloatForward1DFFT(
	FFTBase fft
)
Visual Basic (Declaration)
Public Sub New ( _
	fft As FFTBase _
)
Visual C++
public:
FloatForward1DFFT(
	FFTBase^ fft
)

Parameters

fft
Type: CenterSpace.NMath.Core..::.FFTBase
Any 1D float real FFT instance

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.NMathFormatException Thrown if the given FFTBase does not represent an 1-dimensional float real FFT instance.

See Also