Package eu.simuline.octave.type.matrix
Representations of matrices:
AbstractGenericMatrix
is the abstract base class of all of them.
Note the class parameters are list and according array
with element type maybe primitive.
For non-primitive types, which are rarely used,
AbstractObjectMatrix
provides matrices with object type.
***** redesign required.-
Class Summary Class Description AbstractGenericMatrix<D,L extends List<?>> A general matrix that does not even know that it is an array it stores its in.AbstractObjectMatrix<T> General matrix with Object values which serves also as base class forOctaveCell
.