| Package | Description |
|---|---|
| org.jscience.mathematics.vector |
| Modifier and Type | Method and Description |
|---|---|
SparseMatrix<F> |
SparseMatrix.adjoint() |
SparseMatrix<F> |
SparseMatrix.copy() |
SparseMatrix<F> |
LUDecomposition.getPermutation(F zero,
F one)
Returns the permutation matrix (
P). |
SparseMatrix<F> |
SparseMatrix.inverse() |
SparseMatrix<F> |
SparseMatrix.minus(Matrix<F> that) |
SparseMatrix<F> |
SparseMatrix.opposite() |
SparseMatrix<F> |
SparseMatrix.plus(Matrix<F> that) |
SparseMatrix<F> |
SparseMatrix.tensor(Matrix<F> that) |
SparseMatrix<F> |
SparseMatrix.times(F k) |
SparseMatrix<F> |
SparseMatrix.times(Matrix<F> that) |
SparseMatrix<F> |
SparseMatrix.transpose() |
static <F extends Field<F>> |
SparseMatrix.valueOf(List<SparseVector<F>> rows)
Returns a sparse matrix holding the row vectors from the specified
collection (column vectors if
transposed). |
static <F extends Field<F>> |
SparseMatrix.valueOf(Matrix<F> that,
F zero)
Returns a sparse matrix equivalent to the specified matrix but with
the zero elements removed using the default object equality comparator.
|
static <F extends Field<F>> |
SparseMatrix.valueOf(Matrix<F> that,
F zero,
javolution.util.FastComparator<? super F> comparator)
Returns a sparse matrix equivalent to the specified matrix but with
the zero elements removed using the specified object equality comparator.
|
static <F extends Field<F>> |
SparseMatrix.valueOf(SparseVector<F>... rows)
Returns a sparse matrix holding the specified row vectors
(column vectors if
transposed). |
static <F extends Field<F>> |
SparseMatrix.valueOf(Vector<F> diagonal,
F zero)
Returns the sparse square matrix having the specified diagonal
vector.
|