public abstract class AbstractMatrix1D extends AbstractMatrix
int
, double
, etc.
First see the package summary and javadoc
tree view to get the broad picture.
Note that this implementation is not synchronized.
Modifier and Type | Method and Description |
---|---|
void |
checkSize(AbstractMatrix1D B)
Sanity check for operations requiring two matrices with the same size.
|
long |
index(int rank)
Returns the position of the element with the given relative rank within
the (virtual or non-virtual) internal 1-dimensional array.
|
long |
size()
Returns the number of cells.
|
int |
stride()
Returns the stride.
|
String |
toStringShort()
Returns a string representation of the receiver's shape.
|
ensureCapacity, isView, trimToSize
clone
public void checkSize(AbstractMatrix1D B)
IllegalArgumentException
- if size() != B.size().public long index(int rank)
rank
- the rank of the element.public long size()
size
in class AbstractMatrix
public int stride()
public String toStringShort()
Jump to the Parallel Colt Homepage