| gnu.lists.Array
All known Subclasses: gnu.lists.GeneralArray, gnu.lists.SimpleVector,
Array | public interface Array (Code) | | General interface to arrays of arbitrary dimension.
|
getEffectiveIndex | public int getEffectiveIndex(int[] indexes)(Code) | | |
getLowBound | public int getLowBound(int dim)(Code) | | Get the least dimension along the specified dimension.
|
getSize | public int getSize(int dim)(Code) | | Get length along specified dimension.
|
isEmpty | public boolean isEmpty()(Code) | | |
rank | public int rank()(Code) | | Get the rank (number of dimensions) of this array.
The rank of a scalar is 0, of a Sequence is 1, of a matrix is 2, etc.
|
transpose | public Array transpose(int[] lowBounds, int[] dimensions, int offset0, int[] factors)(Code) | | |
|
|