Class ObjectMatrixImpl<R,C,V>
java.lang.Object
ubic.basecode.dataStructure.matrix.AbstractMatrix<R,C,V>
ubic.basecode.dataStructure.matrix.ObjectMatrixImpl<R,C,V>
- All Implemented Interfaces:
Serializable
,Matrix2D<R,
,C, V> ObjectMatrix<R,
C, V>
Matrix that can hold any type of object
- Author:
- pavlidis
- See Also:
-
Field Summary
Fields inherited from class ubic.basecode.dataStructure.matrix.AbstractMatrix
MAX_ROWS_TO_PRINT
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionint
columns()
Get the number of columns the matrix has.get
(int row, int column) V[]
getColumn
(int col) getEntry
(int row, int column) V[]
getRow
(int row) boolean
isMissing
(int i, int j) Check if the value at a given index is missing.int
rows()
Get the number of rows the matrix hasvoid
void
int
size()
ObjectMatrix
<R, C, V> subset
(int startRow, int startCol, int numRow, int numCol) subsetColumns
(List<C> columns) toString()
viewColumn
(int column) viewRow
(int row) Methods inherited from class ubic.basecode.dataStructure.matrix.AbstractMatrix
addColumnName, addRowName, asDoubles, assign, checkColRange, checkRowRange, containsColumnName, containsRowName, getColIndexByName, getColName, getColNames, getRowIndexByName, getRowName, getRowNameMapIterator, getRowNames, hasColNames, hasMissingValues, hasRow, hasRowNames, numMissing, setColumnName, setColumnNames, setRowName, setRowNames
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface ubic.basecode.dataStructure.matrix.Matrix2D
addColumnName, asDoubles, assign, containsColumnName, containsRowName, getColIndexByName, getColName, getColNames, getRowIndexByName, getRowName, getRowNameMapIterator, getRowNames, hasColNames, hasRow, hasRowNames, numMissing, setColumnName, setColumnNames, setRowName, setRowNames
-
Constructor Details
-
ObjectMatrixImpl
public ObjectMatrixImpl(int x, int y)
-
-
Method Details
-
subsetColumns
- Specified by:
subsetColumns
in interfaceObjectMatrix<R,
C, V> - Parameters:
columns
-- Returns:
-
columns
public int columns()Description copied from interface:Matrix2D
Get the number of columns the matrix has. -
get
- Specified by:
get
in interfaceObjectMatrix<R,
C, V> - Parameters:
row
-column
-- Returns:
-
get
-
getByKeys
-
getColumn
- Specified by:
getColumn
in interfaceObjectMatrix<R,
C, V>
-
getEntry
-
getRow
- Specified by:
getRow
in interfaceObjectMatrix<R,
C, V>
-
isMissing
public boolean isMissing(int i, int j) Description copied from interface:Matrix2D
Check if the value at a given index is missing. -
rows
public int rows()Description copied from interface:Matrix2D
Get the number of rows the matrix has -
set
-
setByKeys
-
size
public int size()- Specified by:
size
in classAbstractMatrix<R,
C, V> - Returns:
-
subset
- Specified by:
subset
in interfaceObjectMatrix<R,
C, V> - Parameters:
startRow
-startCol
-numRow
-numCol
-- Returns:
-
toString
-
viewColumn
- Parameters:
column
-- Returns:
-
viewRow
- Parameters:
row
-- Returns:
-