Class FastRowAccessDoubleMatrix<R,C>
java.lang.Object
ubic.basecode.dataStructure.matrix.AbstractMatrix<R,C,Double>
ubic.basecode.dataStructure.matrix.DoubleMatrix<R,C>
ubic.basecode.dataStructure.matrix.FastRowAccessDoubleMatrix<R,C>
- All Implemented Interfaces:
Serializable
,Matrix2D<R,
,C, Double> PrimitiveMatrix<R,
C, Double>
Dense 2D matrix implementation designed for very fast access of entire rows.
Implementation note: The key difference between this and the DenseDouble2DMatrixNamed is that this delegates to a DoubleArrayList[], while DenseDouble2DMatrixNamed delegates to a DenseDoubleMatrix2D.
- Author:
- pavlidis
- See Also:
-
Field Summary
Fields inherited from class ubic.basecode.dataStructure.matrix.AbstractMatrix
MAX_ROWS_TO_PRINT
-
Constructor Summary
ConstructorsConstructorDescriptionFastRowAccessDoubleMatrix
(double[][] t) Implementation note: The input matrix is NOT COPIED (due to the way colt DoubleArrayList(double[]) is implemented).FFastRowAccessDoubleMatrix
(int rows, int cols) -
Method Summary
Modifier and TypeMethodDescriptiondouble[][]
asArray()
int
columns()
Get the number of columns the matrix has.copy()
Create a deep copy of thisdouble
get
(int x, int y) Double[]
getColObj
(int col) getColRange
(int startCol, int endCol) double[]
getColumn
(int col) getObject
(int row, int col) double[]
getRow
(int i) getRowArrayList
(int i) Double[]
getRowObj
(int row) getRowRange
(int startRow, int endRow) 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
int
size()
subsetColumns
(List<C> columns) Create a copy of this matrix with only the selected columns, in the selected order.subsetRows
(List<R> rowNames) Create a copy of this matrix with only the selected rows, in the selected order.viewColumn
(int column) viewRow
(int j) Methods inherited from class ubic.basecode.dataStructure.matrix.DoubleMatrix
getByKeys, getColumnByName, getEntry, getRawMatrix, getRowByName, setByKeys, sortByColumnAbsoluteValues, toString
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
-
FastRowAccessDoubleMatrix
public FastRowAccessDoubleMatrix(double[][] t) Implementation note: The input matrix is NOT COPIED (due to the way colt DoubleArrayList(double[]) is implemented).F- Parameters:
t
-
-
FastRowAccessDoubleMatrix
public FastRowAccessDoubleMatrix(int rows, int cols) - Parameters:
rows
-cols
-
-
-
Method Details
-
asArray
public double[][] asArray()- Specified by:
asArray
in classDoubleMatrix<R,
C> - Returns:
- double[][]
-
columns
public int columns()Description copied from interface:Matrix2D
Get the number of columns the matrix has.- Returns:
- int
-
copy
Description copied from class:DoubleMatrix
Create a deep copy of this- Specified by:
copy
in classDoubleMatrix<R,
C> - Returns:
- a deep copy of this
-
get
public double get(int x, int y) - Specified by:
get
in classDoubleMatrix<R,
C> - Parameters:
x
-y
-- Returns:
-
getColObj
- Parameters:
col
-- Returns:
-
getColRange
- Specified by:
getColRange
in classDoubleMatrix<R,
C> - Parameters:
startCol
- inclusive, numbered from zeroendCol
- inclusive, numbered from zero- Returns:
- new matrix with just the requested range of columns from this
-
getColumn
public double[] getColumn(int col) - Specified by:
getColumn
in classDoubleMatrix<R,
C>
-
getObject
- Parameters:
row
-col
-- Returns:
-
getRow
public double[] getRow(int i) - Specified by:
getRow
in classDoubleMatrix<R,
C>
-
getRowArrayList
- Specified by:
getRowArrayList
in classDoubleMatrix<R,
C>
-
getRowObj
- Parameters:
row
-- Returns:
-
getRowRange
- Specified by:
getRowRange
in classDoubleMatrix<R,
C> - Parameters:
startRow
- inclusive, numbered from zeroendRow
- inclusive- Returns:
-
isMissing
public boolean isMissing(int i, int j) Description copied from interface:Matrix2D
Check if the value at a given index is missing.- Parameters:
i
- rowj
- column- Returns:
- true if the value is missing, false otherwise.
-
rows
public int rows()Description copied from interface:Matrix2D
Get the number of rows the matrix has- Returns:
- int
-
set
- Parameters:
x
-y
-value
-
-
size
public int size()- Specified by:
size
in classAbstractMatrix<R,
C, Double>
-
subsetColumns
Description copied from class:DoubleMatrix
Create a copy of this matrix with only the selected columns, in the selected order.- Specified by:
subsetColumns
in classDoubleMatrix<R,
C> - Parameters:
columns
-- Returns:
-
subsetRows
Description copied from class:DoubleMatrix
Create a copy of this matrix with only the selected rows, in the selected order.- Specified by:
subsetRows
in classDoubleMatrix<R,
C> - Parameters:
rowNames
-- Returns:
-
transpose
- Specified by:
transpose
in classDoubleMatrix<R,
C>
-
viewColumn
- Specified by:
viewColumn
in classDoubleMatrix<R,
C>
-
viewRow
- Specified by:
viewRow
in classDoubleMatrix<R,
C> - Parameters:
j
-- Returns:
-