Click or drag to resize

Altaxo.Calc.LinearAlgebra.Double Namespace

Contains double-precision linear algebra types and operations.
Classes
 ClassDescription
Public classDenseMatrix A Matrix class with dense storage. The underlying storage is a one dimensional array in column-major order (column by column).
Public classDenseVector A vector using dense storage.
Public classDiagonalMatrix A matrix type for diagonal matrices.
Public classMatrixdouble version of the MatrixT class.
Public classSparseMatrix A Matrix with sparse storage, intended for very large matrices where most of the cells are zero. The underlying storage scheme is 3-array compressed-sparse-row (CSR) Format. Wikipedia - CSR.
Public classSparseVector A vector with sparse storage, intended for very large vectors where most of the cells are zero.
Public classVectordouble version of the VectorT class.