public class FComplexFactory3D extends PersistentObject
ComplexFactory3D F = ComplexFactory3D.dense; F.make(4,4,4); F.random(4,4,5); ... |
Modifier and Type | Field and Description |
---|---|
static FComplexFactory3D |
dense
A factory producing dense matrices.
|
static FComplexFactory3D |
sparse
A factory producing sparse matrices.
|
Modifier and Type | Method and Description |
---|---|
FComplexMatrix3D |
make(float[][][] values)
Constructs a matrix with the given cell values.
|
FComplexMatrix3D |
make(int slices,
int rows,
int columns)
Constructs a matrix with the given shape, each cell initialized with
zero.
|
FComplexMatrix3D |
make(int slices,
int rows,
int columns,
float[] initialValue)
Constructs a matrix with the given shape, each cell initialized with the
given value.
|
FComplexMatrix3D |
random(int slices,
int rows,
int columns)
Constructs a matrix with uniformly distributed values in (0,1)
(exclusive).
|
clone
public static final FComplexFactory3D dense
public static final FComplexFactory3D sparse
public FComplexMatrix3D make(float[][][] values)
The values are copied. So subsequent changes in values are not reflected in the matrix, and vice-versa.
values
- the values to be filled into the cells.IllegalArgumentException
- if
values.length != slices() || for any 0 <= slice < slices(): values[slice].length != rows()
.IllegalArgumentException
- if
for any 0 <= column < columns(): values[slice][row].length != columns()
.public FComplexMatrix3D make(int slices, int rows, int columns)
public FComplexMatrix3D make(int slices, int rows, int columns, float[] initialValue)
public FComplexMatrix3D random(int slices, int rows, int columns)
Jump to the Parallel Colt Homepage