Click or drag to resize

ArrayMath Class

ArrayMath provides some basic methods for manipulating numeric arrays.
Inheritance Hierarchy
SystemObject
  Altaxo.Calc.FourierArrayMath

Namespace: Altaxo.Calc.Fourier
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public class ArrayMath

The ArrayMath type exposes the following members.

Constructors
 NameDescription
Public methodArrayMathInitializes a new instance of the ArrayMath class
Top
Methods
 NameDescription
Public methodStatic memberCopyFromComplexToSplittedArrays Copies an array of Complex elements into an array of the real part values and an array of the imaginary part values.
Public methodStatic memberCopyFromSplittedArraysToComplex Copies two arrays with real and imaginary part values into an array of Complex values.
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodStatic memberMultiplySplittedComplexArrays Multiplies two splitted complex array and stores the result in a splitted complex array.
Public methodStatic memberMultiplySplittedComplexArraysCrossed Multiplies two splitted complex arrays which are the result of Fourier transformations in inverse order like result=x[w]*x[-w] (w is frequency) and stores the result in a splitted complex array. Note that this is not simply x[i]*x[n-i], since there are the special points i=0 and i=n/2. Furthermore, this operation is not transitive, i.e. multiplying src1 with src2 gives not the same result as multipying src2 with src1. See remarks for detail.
Public methodStatic memberNormalizeArrays Multiplies the elements of array arr1 and array arr2 by a factor.
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
See Also