See: Description
Class | Description |
---|---|
CustomDenseMatrixFactory |
Factory that creates DenseMatrix instances.
|
CustomDenseVectorFactory |
Dense vector factory.
|
CustomDiagonalMatrixFactory |
Factory for diagonal matrices.
|
CustomSparseMatrixFactory |
Factory for Sparse Matrices.
|
CustomSparseVectorFactory |
Generates Sparse Vectors with all settings initialized properly
|
DenseMatrix |
A dense matrix implementation.
|
DenseMatrix.LU |
Simple container class for LU decompositions.
|
DenseMatrix.QR |
Container class that stores the Q and R matrices formed by the QR
decomposition of this.
|
DenseMatrix.SVD |
Simple container class for Singular Value Decomposition (SVD) results.
|
DenseVector |
Our dense vector implementation.
|
DiagonalMatrix |
Diagonal matrices are a special case, but a rather common one with very quick
and simple solutions to multiplications, inverses, etc.
|
NativeBlasHandler |
This class provides a uniform interface between working with a native-coded
BLAS package or the jBLAS package.
|
ParallelSparseMatrix |
A sparse matrix implementation.
|
SparseMatrix |
A sparse matrix implementation.
|
SparseVector |
Our sparse vector implementation.
|
VectorIterator |
Small helper class that iterates over all values from this vector.
|