Uses of Class
jline.util.matrix.BaseMatrix

Packages that use BaseMatrix
Package
Description
Matrix operations and linear algebra utilities for queueing analysis.
  • Uses of BaseMatrix in jline.util.matrix

    Subclasses of BaseMatrix in jline.util.matrix
    Modifier and Type
    Class
    Description
    class 
    Base class for dense matrix implementations, containing the core data structure and methods that directly manipulate the underlying dense matrix representation.
    class 
    Base class for sparse matrix implementations, containing the core data structure and methods that directly manipulate the underlying sparse matrix representation.
    Methods in jline.util.matrix that return BaseMatrix
    Modifier and Type
    Method
    Description
    abstract BaseMatrix
    BaseMatrix.copy()
    Creates and returns a deep copy of this matrix.
    abstract BaseMatrix
    DenseMatrix.copy()
    Creates and returns a deep copy of this dense matrix.
    abstract BaseMatrix
    SparseMatrix.copy()
    Creates and returns a deep copy of this sparse matrix.
    abstract BaseMatrix
    BaseMatrix.countEachRow(double val)
    Counts occurrences of each unique value in each row.
    DenseMatrix.countEachRow(double val)
     
    SparseMatrix.countEachRow(double val)
    Counts occurrences of each unique value in each row.
    protected abstract BaseMatrix
    BaseMatrix.createNewInstance(int rows, int cols, int nzLength)
    Creates a new instance of the concrete matrix implementation.
    protected abstract BaseMatrix
    DenseMatrix.createNewInstance(int rows, int cols, int nzLength)
    Creates a new instance of the concrete dense matrix implementation.
    protected abstract BaseMatrix
    SparseMatrix.createNewInstance(int rows, int cols, int nzLength)
    Creates a new instance of the concrete sparse matrix implementation.
    abstract BaseMatrix
    BaseMatrix.findNonNegative()
    Returns a matrix containing indices of all non-negative elements.
    DenseMatrix.findNonNegative()
     
    SparseMatrix.findNonNegative()
    Returns a matrix containing indices of all non-negative elements.