Click or drag to resize

NativeFourierMethodsFourierTransformation(Double, Double, Double, Double, Int32, FourierDirection) Method

Performs a native Fourier transformation of a complex value array.

Namespace: Altaxo.Calc.Fourier
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void FourierTransformation(
	double[] inputreal,
	double[] inputimag,
	double[] resultreal,
	double[] resultimag,
	int count,
	FourierDirection direction
)

Parameters

inputreal  Double
The real part of the array to transform.
inputimag  Double
The real part of the array to transform.
resultreal  Double
Used to store the real part of the result of the transformation. May be equal to the input array.
resultimag  Double
Used to store the imaginary part of the result of the transformation. May be equal to the input array.
count  Int32
Number of points to transform.
direction  FourierDirection
Direction of the Fourier transform.
See Also