See: Description
Class | Description |
---|---|
MDAbstractArray<T> |
Base class of a multi-dimensional array.
|
MDArray<T> |
A multi-dimensional array of generic type
T . |
MDByteArray |
A multi-dimensional
byte array. |
MDDoubleArray |
A multi-dimensional
double array. |
MDFloatArray |
A multi-dimensional
float array. |
MDIntArray |
A multi-dimensional
int array. |
MDLongArray |
A multi-dimensional
long array. |
MDShortArray |
A multi-dimensional
short array. |
This package provides an implementation of multi-dimensional numerical arrays in Java. Contrary to the array of arrays representation that is built into the Java language, the classes in this package use one contiguous array and appropriate index operations to access the elements of the array.
The number of indices (or axis') of an array is called the rank of the array, the set of extends of the array along each of its axis' are called the dimensions of the array.