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.doublealgo |
Double matrix algorithms such as print formatting, sorting, partitioning and statistics.
|
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. |
cern.colt.matrix.objectalgo |
Object matrix algorithms such as print formatting, sorting, partitioning and statistics.
|
Modifier and Type | Class and Description |
---|---|
class |
DoubleMatrix1D
Abstract base class for 1-d matrices (aka vectors) holding double elements.
|
class |
ObjectMatrix1D
Abstract base class for 1-d matrices (aka vectors) holding Object elements.
|
Modifier and Type | Method and Description |
---|---|
protected String |
Formatter.form(AbstractMatrix1D matrix,
int index,
Former formatter)
Converts a given cell to a String; no alignment considered.
|
Modifier and Type | Class and Description |
---|---|
class |
DenseDoubleMatrix1D
Dense 1-d matrix (aka vector) holding double elements.
|
class |
DenseObjectMatrix1D
Dense 1-d matrix (aka vector) holding Object elements.
|
class |
SparseDoubleMatrix1D
Sparse hashed 1-d matrix (aka vector) holding double elements.
|
class |
SparseObjectMatrix1D
Sparse hashed 1-d matrix (aka vector) holding Object elements.
|
Modifier and Type | Method and Description |
---|---|
protected AbstractMatrix1D |
AbstractMatrix1D.vFlip()
Self modifying version of viewFlip().
|
protected AbstractMatrix1D |
AbstractMatrix1D.vPart(int index,
int width)
Self modifying version of viewPart().
|
protected AbstractMatrix1D |
AbstractMatrix1D.vStrides(int stride)
Self modifying version of viewStrides().
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractMatrix1D.checkSize(AbstractMatrix1D B)
Sanity check for operations requiring two matrices with the same size.
|
protected abstract String |
AbstractFormatter.form(AbstractMatrix1D matrix,
int index,
Former formatter)
Converts a given cell to a String; no alignment considered.
|
protected String[] |
AbstractFormatter.formatRow(AbstractMatrix1D vector)
Returns a string representations of all cells; no alignment considered.
|
static String |
AbstractFormatter.shape(AbstractMatrix1D matrix)
Returns a short string representation describing the shape of the matrix.
|
Modifier and Type | Method and Description |
---|---|
protected String |
Formatter.form(AbstractMatrix1D matrix,
int index,
Former formatter)
Converts a given cell to a String; no alignment considered.
|
Copyright © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.