Click or drag to resize

NativeFourierMethodsConvolutionCyclic(Double, Double, Double, Int32) Method

Performes a cyclic convolution between array arr1 and arr2 and stores the result in resultarr. Resultarr must be different from the other two arrays.

Namespace: Altaxo.Calc.Fourier
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public static void ConvolutionCyclic(
	double[] arr1,
	double[] arr2,
	double[] resultarr,
	int count
)

Parameters

arr1  Double
First array.
arr2  Double
Second array.
resultarr  Double
The array that stores the correlation result. Must not alias the input arrays.
count  Int32
Number of points to correlate.
See Also