cern.colt.matrix.tdcomplex
Class DComplexFactory3D
- java.lang.Object
-
- cern.colt.PersistentObject
-
- cern.colt.matrix.tdcomplex.DComplexFactory3D
-
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Cloneable
public class DComplexFactory3D extends PersistentObject
Factory for convenient construction of 3-d matrices holding complex cells. Use idioms like ComplexFactory3D.dense.make(4,4,4) to construct dense matrices, ComplexFactory3D.sparse.make(4,4,4) to construct sparse matrices. If the factory is used frequently it might be useful to streamline the notation. For example by aliasing:ComplexFactory3D F = ComplexFactory3D.dense; F.make(4,4,4); F.random(4,4,5); ...
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field and Description static DComplexFactory3DdenseA factory producing dense matrices.static DComplexFactory3DsparseA factory producing sparse matrices.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description DComplexMatrix3Dmake(double[][][] values)Constructs a matrix with the given cell values.DComplexMatrix3Dmake(int slices, int rows, int columns)Constructs a matrix with the given shape, each cell initialized with zero.DComplexMatrix3Dmake(int slices, int rows, int columns, double[] initialValue)Constructs a matrix with the given shape, each cell initialized with the given value.DComplexMatrix3Drandom(int slices, int rows, int columns)Constructs a matrix with uniformly distributed values in (0,1) (exclusive).-
Methods inherited from class cern.colt.PersistentObject
clone
-
-
-
-
Field Detail
-
dense
public static final DComplexFactory3D dense
A factory producing dense matrices.
-
sparse
public static final DComplexFactory3D sparse
A factory producing sparse matrices.
-
-
Method Detail
-
make
public DComplexMatrix3D make(double[][][] values)
Constructs a matrix with the given cell values. values is required to have the form values[slice][row][column] and have exactly the same number of slices, rows and columns as the receiver.The values are copied. So subsequent changes in values are not reflected in the matrix, and vice-versa.
- Parameters:
values- the values to be filled into the cells.- Returns:
- this (for convenience only).
- Throws:
java.lang.IllegalArgumentException- if values.length != slices() || for any 0 <= slice < slices(): values[slice].length != rows() .java.lang.IllegalArgumentException- if for any 0 <= column < columns(): values[slice][row].length != columns() .
-
make
public DComplexMatrix3D make(int slices, int rows, int columns)
Constructs a matrix with the given shape, each cell initialized with zero.
-
make
public DComplexMatrix3D make(int slices, int rows, int columns, double[] initialValue)
Constructs a matrix with the given shape, each cell initialized with the given value.
-
random
public DComplexMatrix3D random(int slices, int rows, int columns)
Constructs a matrix with uniformly distributed values in (0,1) (exclusive).
-
-
DMelt 3.0 © DataMelt by jWork.ORG