30 #ifndef BORDEREDBANDMATRIX_H_ 31 #define BORDEREDBANDMATRIX_H_ 80 void resize(
unsigned int nSize,
unsigned int nBorder = 1,
81 unsigned int nBand = 5);
85 const std::vector<unsigned int>* anIndex,
86 const std::vector<double>* aVector);
88 unsigned int* anIndex,
double* aVector);
89 Eigen::MatrixXd
getBlockMatrix(
const std::vector<unsigned int> anIndex)
const;
90 Eigen::MatrixXd
getBlockMatrix(
unsigned int aSize,
unsigned int* anIndex)
const;
void printMatrix() const
Print bordered band matrix.
void addBlockMatrix(double aWeight, const std::vector< unsigned int > *anIndex, const std::vector< double > *aVector)
Add symmetric block matrix.
Simple Matrix based on std::vector<double>
Eigen::MatrixXd getBlockMatrix(const std::vector< unsigned int > anIndex) const
Retrieve symmetric block matrix.
virtual ~BorderedBandMatrix()
(Symmetric) Bordered Band Matrix.
BorderedBandMatrix()
Create bordered band matrix.
unsigned int numCol
Band matrix size.
VMatrix invertBand()
Invert band part.
VMatrix theMixed
Mixed part.
void decomposeBand()
(root free) Cholesky decomposition of band part: C=LDL^T
Namespace for the general broken lines package.
unsigned int numBorder
Border size.
Simple symmetric Matrix based on std::vector<double>
VSymMatrix theBorder
Border part.
void resize(unsigned int nSize, unsigned int nBorder=1, unsigned int nBand=5)
Resize bordered band matrix.
VMatrix theBand
Band part.
VMatrix bandOfAVAT(const VMatrix &anArray, const VSymMatrix &aSymArray) const
Calculate band part of: 'anArray * aSymArray * anArray.T'.
Simple Vector based on std::vector<double>
unsigned int numSize
Matrix size.
VVector solveBand(const VVector &aRightHandSide) const
Solve for band part.
void solveAndInvertBorderedBand(const VVector &aRightHandSide, VVector &aSolution)
Solve linear equation system, partially calculate inverse.
unsigned int numBand
Band width.