Class | Description |
---|---|
CSRVec |
Sparse vector implementation using a column-sorted row.
|
DenseVec |
Default "dense" vector implementation backed by a simple array.
|
LinAlg |
Simple linear algebra and geometry functions designed to operate
on doubles[].
|
LUDecomposition |
LU Decomposition
For an m-by-n matrix A with m >= n, the LU decomposition is an m-by-n
unit lower triangular matrix L, an n-by-n upper triangular matrix U,
and a permutation vector piv of length m so that A(piv,:) = L*U.
|
MathUtil |
Miscellaneous math utilities like mod2pi and fast exp functions.
|
Matrix |
Matrix class supporting dense and sparse matrices.
|
Permutation |
The output of a variable reordering algorithm.
|
SingularValueDecomposition |
Singular Value Decomposition.
|
Vec |
Base type of all vectors (both sparse and dense).
|