Sparse matrix whose non-zero entries are confined to a diagonal band, comprising the main diagonal and zero or more diagonals on either side.
More...
|
| BandMatrix (size_t dim, size_t nUpper, size_t nLower) |
| Constructor.
|
|
std::vector< Scalar > | lu_solve (const std::vector< Scalar > &b, bool is_lu_decomposed=false) |
|
Scalar & | operator() (size_t i, size_t j) |
| Access operator i ∈ [i=0,...,dim()-1].
|
|
const Scalar & | operator() (size_t i, size_t j) const |
| Access operator i ∈ [i=0,...,dim()-1].
|
|
|
size_t | dim () const |
| Returns the matrix dimension.
|
|
size_t | dimLowerBand () const |
| Returns the dimension of the lower band.
|
|
size_t | dimUpperBand () const |
| Returns the dimension of the upper band.
|
|
std::vector< Scalar > | l_solve (const std::vector< Scalar > &b) const |
| Solves the equation Lx = b for x.
|
|
void | lu_decompose () |
| Calculate the LU decomposition.
|
|
std::vector< Scalar > | u_solve (const std::vector< Scalar > &b) const |
| Solves the equation Ux = b for x.
|
|
|
std::vector< std::vector< Scalar > > | lowerBand |
| lower diagonal band
|
|
std::vector< std::vector< Scalar > > | upperBand |
| upper diagonal band
|
|
template<typename Scalar>
class NAV::CubicSpline< Scalar >::BandMatrix
Sparse matrix whose non-zero entries are confined to a diagonal band, comprising the main diagonal and zero or more diagonals on either side.
◆ BandMatrix()
template<typename Scalar >
NAV::CubicSpline< Scalar >::BandMatrix::BandMatrix |
( |
size_t | dim, |
|
|
size_t | nUpper, |
|
|
size_t | nLower ) |
|
inline |
Constructor.
- Parameters
-
[in] | dim | Dimension of the matrix |
[in] | nUpper | Amount of upper diagonals |
[in] | nLower | Amount of lower diagonals |
◆ lu_solve()
template<typename Scalar >
std::vector< Scalar > NAV::CubicSpline< Scalar >::BandMatrix::lu_solve |
( |
const std::vector< Scalar > & | b, |
|
|
bool | is_lu_decomposed = false ) |
|
inlinenodiscard |
Solves the linear equations Ax = b for x by obtaining the LU decomposition A = LU and solving
- Ly = b for y
- Ux = y for x
The documentation for this class was generated from the following file: