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.matrixModifier and TypeClassDescriptionclassBase class for dense matrix implementations, containing the core data structure and methods that directly manipulate the underlying dense matrix representation.classBase 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 BaseMatrixModifier and TypeMethodDescriptionabstract BaseMatrixBaseMatrix.copy()Creates and returns a deep copy of this matrix.DenseMatrix.copy()Creates and returns a deep copy of this dense matrix.abstract BaseMatrixBaseMatrix.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 BaseMatrixBaseMatrix.createNewInstance(int rows, int cols, int nzLength) Creates a new instance of the concrete matrix implementation.protected BaseMatrixDenseMatrix.createNewInstance(int rows, int cols, int nzLength) Creates a new instance of the concrete dense matrix implementation.protected BaseMatrixSparseMatrix.createNewInstance(int rows, int cols, int nzLength) Creates a new instance of the concrete sparse matrix implementation.abstract BaseMatrixBaseMatrix.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.