Class EmptyBulkExpressionDataMatrix

All Implemented Interfaces:
BulkExpressionDataMatrix<Object>, ExpressionDataMatrix<Object>

public class EmptyBulkExpressionDataMatrix extends AbstractBulkExpressionDataMatrix<Object>
An empty bulk expression data matrix.
Author:
poirigui
  • Constructor Details

  • Method Details

    • hasMissingValues

      public boolean hasMissingValues()
      Returns:
      true if any values are null or NaN (for doubles and floats); any other value that is considered missing.
    • getRawMatrix

      public Object[][] getRawMatrix()
      Description copied from interface: BulkExpressionDataMatrix
      Access the entire matrix.
      Returns:
      T[][]
    • getColumn

      public Object[] getColumn(int column)
      Description copied from interface: ExpressionDataMatrix
      Access a single column of the matrix.
      Parameters:
      column - index
      Returns:
      T[]
    • getRow

      public Object[] getRow(int index)
      Description copied from interface: ExpressionDataMatrix
      Access a single row of the matrix, by index. A complete row is returned.
      Parameters:
      index - i
      Returns:
      t[]
    • sliceRows

      public ExpressionDataMatrix<Object> sliceRows(List<CompositeSequence> designElements)
    • get

      public Object get(int row, int column)
      Description copied from interface: ExpressionDataMatrix
      Access a single value of the matrix by row and column.
    • format

      protected String format(int i, int j)
      Description copied from class: AbstractExpressionDataMatrix
      Format a matrix entry at a particular row/column.
      Specified by:
      format in class AbstractExpressionDataMatrix<Object>