Interface PrimitiveMatrix<R,C,V>
-
- All Superinterfaces:
Matrix2D<R,C,V>
- All Known Implementing Classes:
CompressedSparseDoubleMatrix
,DenseDoubleMatrix
,DoubleMatrix
,FastRowAccessDoubleMatrix
,IntegerMatrix
,SparseDoubleMatrix
,SparseRaggedDoubleMatrix
public interface PrimitiveMatrix<R,C,V> extends Matrix2D<R,C,V>
Matrix that holds primitives, with an available object representation of the values.- Author:
- Paul
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description V[]
getColObj(int col)
V
getObject(int r, int c)
V[]
getRowObj(int row)
-
Methods inherited from interface ubic.basecode.dataStructure.matrix.Matrix2D
addColumnName, asDoubles, assign, columns, containsColumnName, containsRowName, getByKeys, getColIndexByName, getColName, getColNames, getEntry, getRowIndexByName, getRowName, getRowNameMapIterator, getRowNames, hasColNames, hasRow, hasRowNames, isMissing, numMissing, rows, set, setByKeys, setColumnName, setColumnNames, setRowName, setRowNames
-
-