Package | Description |
---|---|
cern.colt.matrix |
Matrix interfaces and factories; efficient and flexible dense and sparse
1, 2, 3 and d-dimensional matrices holding objects or primitive data types such
as int, double, etc; Templated, fixed sized (not dynamically
resizable); Also known as multi-dimensional arrays or Data Cubes.
|
cern.colt.matrix.impl |
Matrix implementations; You normally need not look at this package, because all concrete classes implement the abstract interfaces of
cern.colt.matrix , without subsetting or supersetting. |
Modifier and Type | Class and Description |
---|---|
class |
DoubleMatrix3D
Abstract base class for 3-d matrices holding double elements.
|
class |
ObjectMatrix3D
Abstract base class for 3-d matrices holding Object elements.
|
Modifier and Type | Class and Description |
---|---|
class |
DenseDoubleMatrix3D
Dense 3-d matrix holding double elements.
|
class |
DenseObjectMatrix3D
Dense 3-d matrix holding Object elements.
|
class |
SparseDoubleMatrix3D
Sparse hashed 3-d matrix holding double elements.
|
class |
SparseObjectMatrix3D
Sparse hashed 3-d matrix holding Object elements.
|
Modifier and Type | Method and Description |
---|---|
protected AbstractMatrix3D |
AbstractMatrix3D.vColumnFlip()
Self modifying version of viewColumnFlip().
|
protected AbstractMatrix3D |
AbstractMatrix3D.vDice(int axis0,
int axis1,
int axis2)
Self modifying version of viewDice().
|
protected AbstractMatrix3D |
AbstractMatrix3D.vPart(int slice,
int row,
int column,
int depth,
int height,
int width)
Self modifying version of viewPart().
|
protected AbstractMatrix3D |
AbstractMatrix3D.vRowFlip()
Self modifying version of viewRowFlip().
|
protected AbstractMatrix3D |
AbstractMatrix3D.vSliceFlip()
Self modifying version of viewSliceFlip().
|
protected AbstractMatrix3D |
AbstractMatrix3D.vStrides(int sliceStride,
int rowStride,
int columnStride)
Self modifying version of viewStrides().
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractMatrix3D.checkShape(AbstractMatrix3D B)
Sanity check for operations requiring two matrices with the same number of slices, rows and columns.
|
void |
AbstractMatrix3D.checkShape(AbstractMatrix3D B,
AbstractMatrix3D C)
Sanity check for operations requiring matrices with the same number of slices, rows and columns.
|
static String |
AbstractFormatter.shape(AbstractMatrix3D matrix)
Returns a short string representation describing the shape of the matrix.
|
Copyright © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.