Class EmptyBulkExpressionDataMatrix

    • Method Detail

      • 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[]
      • get

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