Package | Description |
---|---|
cern.colt.matrix.tfcomplex |
Matrix interfaces and factories holding elements of fcomplex data type.
|
cern.colt.matrix.tfcomplex.algo |
Algorithms operating on complex matrices.
|
cern.colt.matrix.tfcomplex.impl |
Efficient and flexible dense and sparse 1, 2 and 3-dimensional matrices holding elements of fcomplex data type.
|
Modifier and Type | Method and Description |
---|---|
FComplexMatrix3D |
FComplexMatrix3D.assign(FComplexFComplexFunction function)
Assigns the result of a function to each cell.
|
FComplexMatrix3D |
FComplexMatrix3D.assign(FComplexMatrix3D other)
Replaces all cell values of the receiver with the values of another
matrix.
|
FComplexMatrix3D |
FComplexMatrix3D.assign(FComplexMatrix3D y,
FComplexFComplexFComplexFunction function)
Assigns the result of a function to each cell.
|
FComplexMatrix3D |
FComplexMatrix3D.assign(FComplexProcedure cond,
FComplexFComplexFunction f)
Assigns the result of a function to all cells that satisfy a condition.
|
FComplexMatrix3D |
FComplexMatrix3D.assign(FComplexProcedure cond,
float[] value)
Assigns a value to all cells that satisfy a condition.
|
FComplexMatrix3D |
FComplexMatrix3D.assign(FComplexRealFunction function)
Assigns the result of a function to the real part of the receiver.
|
FComplexMatrix3D |
FComplexMatrix3D.assign(float[] values)
Sets all cells to the state specified by values.
|
FComplexMatrix3D |
FComplexMatrix3D.assign(float[][][] values)
Sets all cells to the state specified by values.
|
FComplexMatrix3D |
FComplexMatrix3D.assign(float re,
float im)
Sets all cells to the state specified by re and im.
|
FComplexMatrix3D |
FComplexMatrix3D.assignImaginary(FloatMatrix3D other)
Replaces imaginary part of the receiver with the values of another real
matrix.
|
FComplexMatrix3D |
FComplexMatrix3D.assignReal(FloatMatrix3D other)
Replaces real part of the receiver with the values of another real
matrix.
|
FComplexMatrix3D |
FComplexMatrix3D.copy()
Constructs and returns a deep copy of the receiver.
|
FComplexMatrix3D |
FComplexMatrix3D.like()
Construct and returns a new empty matrix of the same dynamic type
as the receiver, having the same number of slices, rows and columns.
|
abstract FComplexMatrix3D |
FComplexMatrix3D.like(int slices,
int rows,
int columns)
Construct and returns a new empty matrix of the same dynamic type
as the receiver, having the specified number of slices, rows and columns.
|
FComplexMatrix3D |
FComplexFactory3D.make(float[][][] values)
Constructs a matrix with the given cell values.
|
FComplexMatrix3D |
FComplexFactory3D.make(int slices,
int rows,
int columns)
Constructs a matrix with the given shape, each cell initialized with
zero.
|
FComplexMatrix3D |
FComplexFactory3D.make(int slices,
int rows,
int columns,
float[] initialValue)
Constructs a matrix with the given shape, each cell initialized with the
given value.
|
FComplexMatrix3D |
FComplexFactory3D.random(int slices,
int rows,
int columns)
Constructs a matrix with uniformly distributed values in (0,1)
(exclusive).
|
abstract FComplexMatrix3D |
FComplexMatrix1D.reshape(int slices,
int rows,
int columns)
Returns new FloatMatrix3D of size slices x rows x columns, whose elements
are taken column-wise from this matrix.
|
FComplexMatrix3D |
FComplexMatrix3D.viewColumnFlip()
Constructs and returns a new flip view along the column axis.
|
FComplexMatrix3D |
FComplexMatrix3D.viewDice(int axis0,
int axis1,
int axis2)
Constructs and returns a new dice view; Swaps dimensions (axes);
Example: 3 x 4 x 5 matrix --> 4 x 3 x 5 matrix.
|
FComplexMatrix3D |
FComplexMatrix3D.viewPart(int slice,
int row,
int column,
int depth,
int height,
int width)
Constructs and returns a new sub-range view that is a
depth x height x width sub matrix starting at
[slice,row,column]; Equivalent to
view().part(slice,row,column,depth,height,width); Provided for
convenience only.
|
FComplexMatrix3D |
FComplexMatrix3D.viewRowFlip()
Constructs and returns a new flip view along the row axis.
|
FComplexMatrix3D |
FComplexMatrix3D.viewSelection(FComplexMatrix2DProcedure condition)
Constructs and returns a new selection view that is a matrix
holding all slices matching the given condition.
|
FComplexMatrix3D |
FComplexMatrix3D.viewSelection(int[] sliceIndexes,
int[] rowIndexes,
int[] columnIndexes)
Constructs and returns a new selection view that is a matrix
holding the indicated cells.
|
FComplexMatrix3D |
FComplexMatrix3D.viewSliceFlip()
Constructs and returns a new flip view along the slice axis.
|
FComplexMatrix3D |
FComplexMatrix3D.viewStrides(int sliceStride,
int rowStride,
int columnStride)
Constructs and returns a new stride view which is a sub matrix
consisting of every i-th cell.
|
Modifier and Type | Method and Description |
---|---|
float[] |
FComplexMatrix3D.aggregate(FComplexMatrix3D other,
FComplexFComplexFComplexFunction aggr,
FComplexFComplexFComplexFunction f)
Applies a function to each corresponding cell of two matrices and
aggregates the results.
|
FComplexMatrix3D |
FComplexMatrix3D.assign(FComplexMatrix3D other)
Replaces all cell values of the receiver with the values of another
matrix.
|
FComplexMatrix3D |
FComplexMatrix3D.assign(FComplexMatrix3D y,
FComplexFComplexFComplexFunction function)
Assigns the result of a function to each cell.
|
Modifier and Type | Method and Description |
---|---|
boolean |
FComplexProperty.equals(FComplexMatrix3D A,
FComplexMatrix3D B)
Returns whether both given matrices A and B are equal.
|
boolean |
FComplexProperty.equals(FComplexMatrix3D A,
float[] value)
Returns whether all cells of the given matrix A are equal to the
given value.
|
Modifier and Type | Class and Description |
---|---|
class |
DenseFComplexMatrix3D
Dense 3-d matrix holding complex elements.
|
class |
DenseLargeFComplexMatrix3D
Dense 3-d matrix holding complex elements.
Implementation: |
class |
SparseFComplexMatrix3D
Sparse hashed 3-d matrix holding complex elements.
|
class |
WrapperFComplexMatrix3D
3-d matrix holding complex elements; either a view wrapping another
matrix or a matrix whose views are wrappers.
|
Modifier and Type | Method and Description |
---|---|
FComplexMatrix3D |
DenseFComplexMatrix3D.assign(FComplexFComplexFunction function) |
FComplexMatrix3D |
DenseFComplexMatrix3D.assign(FComplexMatrix3D source) |
FComplexMatrix3D |
DenseFComplexMatrix3D.assign(FComplexMatrix3D y,
FComplexFComplexFComplexFunction function) |
FComplexMatrix3D |
DenseFComplexMatrix3D.assign(FComplexProcedure cond,
FComplexFComplexFunction f) |
FComplexMatrix3D |
DenseFComplexMatrix3D.assign(FComplexProcedure cond,
float[] value) |
FComplexMatrix3D |
DenseFComplexMatrix3D.assign(FComplexRealFunction function) |
FComplexMatrix3D |
SparseFComplexMatrix3D.assign(float[] value) |
FComplexMatrix3D |
DenseFComplexMatrix3D.assign(float[] values) |
FComplexMatrix3D |
DenseFComplexMatrix3D.assign(float[][][] values) |
FComplexMatrix3D |
DenseFComplexMatrix3D.assign(float re,
float im) |
FComplexMatrix3D |
DenseFComplexMatrix3D.assignImaginary(FloatMatrix3D other) |
FComplexMatrix3D |
DenseFComplexMatrix3D.assignReal(FloatMatrix3D other) |
FComplexMatrix3D |
SparseFComplexMatrix3D.like(int slices,
int rows,
int columns) |
FComplexMatrix3D |
WrapperFComplexMatrix3D.like(int slices,
int rows,
int columns) |
FComplexMatrix3D |
DenseLargeFComplexMatrix3D.like(int slices,
int rows,
int columns) |
FComplexMatrix3D |
DenseFComplexMatrix3D.like(int slices,
int rows,
int columns) |
FComplexMatrix3D |
WrapperFComplexMatrix1D.reshape(int slices,
int rows,
int columns) |
FComplexMatrix3D |
DenseFComplexMatrix1D.reshape(int slices,
int rows,
int columns) |
FComplexMatrix3D |
SparseFComplexMatrix1D.reshape(int slices,
int rows,
int columns) |
FComplexMatrix3D |
WrapperFComplexMatrix3D.viewColumnFlip() |
FComplexMatrix3D |
WrapperFComplexMatrix3D.viewDice(int axis0,
int axis1,
int axis2) |
FComplexMatrix3D |
WrapperFComplexMatrix3D.viewPart(int slice,
int row,
int column,
int depth,
int height,
int width) |
FComplexMatrix3D |
WrapperFComplexMatrix3D.viewRowFlip() |
FComplexMatrix3D |
WrapperFComplexMatrix3D.viewSelection(int[] sliceIndexes,
int[] rowIndexes,
int[] columnIndexes) |
FComplexMatrix3D |
WrapperFComplexMatrix3D.viewSliceFlip() |
FComplexMatrix3D |
WrapperFComplexMatrix3D.viewStrides(int _sliceStride,
int _rowStride,
int _columnStride) |
Modifier and Type | Method and Description |
---|---|
float[] |
DenseFComplexMatrix3D.aggregate(FComplexMatrix3D other,
FComplexFComplexFComplexFunction aggr,
FComplexFComplexFComplexFunction f) |
FComplexMatrix3D |
DenseFComplexMatrix3D.assign(FComplexMatrix3D source) |
FComplexMatrix3D |
DenseFComplexMatrix3D.assign(FComplexMatrix3D y,
FComplexFComplexFComplexFunction function) |
Constructor and Description |
---|
WrapperFComplexMatrix3D(FComplexMatrix3D newContent) |
Jump to the Parallel Colt Homepage