NativeFourierMethodsConvolutionCyclic(Double, Double, Double, Double, Double, Double, Int32) Method |
Performes a cyclic convolution between splitted complex arrays and stores the result in resultarr. Resultarr must be
different from the input arrays.
Namespace: Altaxo.Calc.FourierAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static void ConvolutionCyclic(
double[] src1real,
double[] src1imag,
double[] src2real,
double[] src2imag,
double[] resultreal,
double[] resultimag,
int n
)
Parameters
- src1real Double
- First array (real part values).
- src1imag Double
- First array (imaginary part values).
- src2real Double
- Second array (real part values).
- src2imag Double
- Second array (imaginary part values).
- resultreal Double
- The array that stores the correlation result (real part values.
- resultimag Double
- The array that stores the correlation result (imaginary part values.
- n Int32
- Number of points to correlate.
See Also