Class FastFourierTransformer.MultiDimensionalComplexMatrix
java.lang.Object
org.apache.commons.math3.transform.FastFourierTransformer.MultiDimensionalComplexMatrix
- All Implemented Interfaces:
Cloneable
- Enclosing class:
FastFourierTransformer
@Deprecated
private static class FastFourierTransformer.MultiDimensionalComplexMatrix
extends Object
implements Cloneable
Deprecated.
see MATH-736
Complex matrix implementation. Not designed for synchronized access may
eventually be replaced by jsr-83 of the java community process
http://jcp.org/en/jsr/detail?id=83
may require additional exception throws for other basic requirements.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected int[]
Deprecated.Size in all dimensions.protected Object
Deprecated.Storage array. -
Constructor Summary
ConstructorsConstructorDescriptionMultiDimensionalComplexMatrix
(Object multiDimensionalComplexArray) Deprecated.Simple constructor. -
Method Summary
Modifier and TypeMethodDescriptionclone()
Deprecated.private void
Deprecated.Copy contents of current array into mdcm.get
(int... vector) Deprecated.Get a matrix element.getArray()
Deprecated.Get the underlying storage array.int[]
Deprecated.Get the size in all dimensions.Deprecated.Set a matrix element.
-
Field Details
-
dimensionSize
protected int[] dimensionSizeDeprecated.Size in all dimensions. -
multiDimensionalComplexArray
Deprecated.Storage array.
-
-
Constructor Details
-
MultiDimensionalComplexMatrix
MultiDimensionalComplexMatrix(Object multiDimensionalComplexArray) Deprecated.Simple constructor.- Parameters:
multiDimensionalComplexArray
- array containing the matrix elements
-
-
Method Details
-
get
Deprecated.Get a matrix element.- Parameters:
vector
- indices of the element- Returns:
- matrix element
- Throws:
DimensionMismatchException
- if dimensions do not match
-
set
Deprecated.Set a matrix element.- Parameters:
magnitude
- magnitude of the elementvector
- indices of the element- Returns:
- the previous value
- Throws:
DimensionMismatchException
- if dimensions do not match
-
getDimensionSizes
public int[] getDimensionSizes()Deprecated.Get the size in all dimensions.- Returns:
- size in all dimensions
-
getArray
Deprecated.Get the underlying storage array.- Returns:
- underlying storage array
-
clone
Deprecated. -
clone
Deprecated.Copy contents of current array into mdcm.- Parameters:
mdcm
- array where to copy data
-