hmatrix-banded-0.0.0.3: HMatrix interface to LAPACK functions for banded matrices

Safe HaskellNone
LanguageHaskell98

Numeric.LinearAlgebra.Banded

Synopsis

Documentation

newtype UpperMatrix a Source

Stores an upper triangular band matrix in the form:

a11 a12 a13
a22 a23 a24
a33 a34 a35
a44 a45 a46
a55 a56 a57

Constructors

UpperMatrix (Matrix a) 

Instances

(Show a, Element a) => Show (UpperMatrix a) 

newtype SymmetricMatrix a Source

Stores the upper half of a symmetric band matrix in the same layout as UpperMatrix.

Constructors

SymmetricMatrix (Matrix a) 

Instances

class CholeskySolve c where Source

Methods

choleskySolve :: C a => UpperMatrix a -> c a -> c a Source