Click or drag to resize

DoubleForward1DFFTFFTInPlace(DoubleVector) Method

Computes the in-place forward FFT of the signal vinout.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public void FFTInPlace(
	DoubleVector vinout
)

Parameters

vinout  DoubleVector
The input signal and output FFT.
Exceptions
ExceptionCondition
InvalidArgumentException The input/output vector must have unit stride. Use the DoubleGeneral1DFFT class to transform non-unit strided signals.
MismatchedSizeException Thrown when
C#
vinout.Length
is less than the length of this DoubleForward1DFFT instance.
See Also