| Pfa235ConvolutionCyclicCorrelationDestructive Method | 
            Performs a correlation of two comlex arrays which are in splitted form (i.e. real and imaginary part are separate arrays). Attention: the data into the
            input arrays will be destroyed!
            
Namespace: Altaxo.Calc.FourierAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3261.0 (4.8.3261.0)
 Syntax
Syntaxpublic void CyclicCorrelationDestructive(
	double[] src1real,
	double[] src1imag,
	double[] src2real,
	double[] src2imag,
	double[] resultreal,
	double[] resultimag,
	int n
)
Parameters
- src1real  Double
- The real part of the first input array (will be destroyed).
- src1imag  Double
- The imaginary part of the first input array (will be destroyed).
- src2real  Double
- The real part of the second input array (will be destroyed).
- src2imag  Double
- The imaginary part of the second input array (will be destroyed).
- resultreal  Double
- The real part of the result. (may be identical with arr1 or arr2).
- resultimag  Double
- The imaginary part of the result (may be identical with arr1 or arr2).
- n  Int32
- The length of the convolution. Has to be equal or smaller than the array size. Has to be a power of 2!
 See Also
See Also