Class DenseDoubleMatrix<R,C>
- java.lang.Object
-
- ubic.basecode.dataStructure.matrix.AbstractMatrix<R,C,Double>
-
- ubic.basecode.dataStructure.matrix.DoubleMatrix<R,C>
-
- ubic.basecode.dataStructure.matrix.DenseDoubleMatrix<R,C>
-
- All Implemented Interfaces:
Serializable
,Matrix2D<R,C,Double>
,PrimitiveMatrix<R,C,Double>
public class DenseDoubleMatrix<R,C> extends DoubleMatrix<R,C>
A dense matrix of doubles that knows about row and column names.- Author:
- Paul Pavlidis
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class ubic.basecode.dataStructure.matrix.AbstractMatrix
MAX_ROWS_TO_PRINT
-
-
Constructor Summary
Constructors Constructor Description DenseDoubleMatrix(double[][] T)
DenseDoubleMatrix(int rows, int cols)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double[][]
asArray()
int
columns()
Get the number of columns the matrix has.DoubleMatrix<R,C>
copy()
Create a deep copy of thisdouble
get(int row, int column)
double[]
getColByName(C s)
Return a copy of a given column.Double[]
getColObj(int col)
DoubleMatrix<R,C>
getColRange(int startCol, int endCol)
double[]
getColumn(int col)
Double
getObject(int row, int col)
Converts to a String that can be read by read.table in R, using default parametersdouble[]
getRow(int row)
Return a reference to a specific row.cern.colt.list.DoubleArrayList
getRowArrayList(int i)
double[]
getRowByName(R s)
Return a reference to a specific row.Double[]
getRowObj(int row)
DoubleMatrix<R,C>
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
set(int row, int column, Double value)
int
size()
DoubleMatrix<R,C>
subsetColumns(List<C> columns)
Create a copy of this matrix with only the selected columns, in the selected order.DoubleMatrix<R,C>
subsetRows(List<R> rowNames)
Create a copy of this matrix with only the selected rows, in the selected order.DoubleMatrix<C,R>
transpose()
cern.colt.matrix.DoubleMatrix1D
viewColumn(int column)
cern.colt.matrix.DoubleMatrix1D
viewRow(int row)
-
Methods inherited from class ubic.basecode.dataStructure.matrix.DoubleMatrix
getByKeys, getColumnByName, getEntry, getRawMatrix, 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
-
-
-
-
Method Detail
-
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
public DoubleMatrix<R,C> copy()
Description copied from class:DoubleMatrix
Create a deep copy of this- Specified by:
copy
in classDoubleMatrix<R,C>
- Returns:
- basecode.dataStructure.DenseDoubleMatrix2DNamed
-
get
public double get(int row, int column)
- Specified by:
get
in classDoubleMatrix<R,C>
- Parameters:
row
- intcolumn
- int- Returns:
- See Also:
DoubleMatrix2D.get(int, int)
-
getColByName
public double[] getColByName(C s)
Return a copy of a given column.- Parameters:
col
- int- Returns:
- double[]
-
getColObj
public Double[] getColObj(int col)
- Returns:
-
getColRange
public DoubleMatrix<R,C> getColRange(int startCol, int endCol)
- 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
public Double getObject(int row, int col)
Converts to a String that can be read by read.table in R, using default parameters- Returns:
- java.lang.String
-
getRow
public double[] getRow(int row)
Return a reference to a specific row.- Specified by:
getRow
in classDoubleMatrix<R,C>
- Parameters:
row
- int- Returns:
- double[]
-
getRowArrayList
public cern.colt.list.DoubleArrayList getRowArrayList(int i)
- Specified by:
getRowArrayList
in classDoubleMatrix<R,C>
-
getRowByName
public double[] getRowByName(R s)
Return a reference to a specific row.- Overrides:
getRowByName
in classDoubleMatrix<R,C>
- Parameters:
s
- String- Returns:
- double[]
-
getRowObj
public Double[] getRowObj(int row)
- Returns:
-
getRowRange
public DoubleMatrix<R,C> getRowRange(int startRow, int endRow)
- 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
public void set(int row, int column, Double value)
-
size
public int size()
- Specified by:
size
in classAbstractMatrix<R,C,Double>
- Returns:
- int
- See Also:
AbstractMatrix2D.size()
-
subsetColumns
public DoubleMatrix<R,C> subsetColumns(List<C> columns)
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>
- Returns:
-
subsetRows
public DoubleMatrix<R,C> subsetRows(List<R> rowNames)
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>
- Returns:
-
transpose
public DoubleMatrix<C,R> transpose()
- Specified by:
transpose
in classDoubleMatrix<R,C>
-
viewColumn
public cern.colt.matrix.DoubleMatrix1D viewColumn(int column)
- Specified by:
viewColumn
in classDoubleMatrix<R,C>
- Parameters:
column
- int- Returns:
- cern.colt.matrix.DoubleMatrix1D
-
viewRow
public cern.colt.matrix.DoubleMatrix1D viewRow(int row)
- Specified by:
viewRow
in classDoubleMatrix<R,C>
- Parameters:
row
- int- Returns:
- DoubleMatrix1D
- See Also:
viewRow(int)
-
-