Click or drag to resize

ChirpFFTCyclicCorrelation(Double, Double, Double, Double, Double, Double, Int32) Method

Performs a cyclic correlation of splitted complex data of arbitrary length.

Namespace: Altaxo.Calc.Fourier
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void CyclicCorrelation(
	double[] datare,
	double[] dataim,
	double[] responsere,
	double[] responseim,
	double[] resultre,
	double[] resultim,
	int n
)

Parameters

datare  Double
Real part of the data array (first input array).
dataim  Double
Imaginary part of the data array (first input array).
responsere  Double
Real part of the response array (second input array).
responseim  Double
Imaginary part of the response array (second input array).
resultre  Double
The real part of the resulting array.
resultim  Double
The imaginary part of the resulting array.
n  Int32
The convolution size. The input and result arrays may be larger, but of course not smaller than this number.
See Also