STK++ 0.9.13
STK::hidden::InvertLowerSymMatrixDispatcher< Matrix, Size_ > Struct Template Reference

computing the inverse of a lower symmetric matrix. More...

#include <STK_InvertLowerSym.h>

Public Types

typedef Matrix::Type Type
 

Static Public Member Functions

static Type run (Matrix const &m, CArraySquare< Type, Size_ > &inv)
 

Detailed Description

template<class Matrix, int Size_>
struct STK::hidden::InvertLowerSymMatrixDispatcher< Matrix, Size_ >

computing the inverse of a lower symmetric matrix.

Definition at line 259 of file STK_InvertLowerSym.h.

Member Typedef Documentation

◆ Type

Definition at line 261 of file STK_InvertLowerSym.h.

Member Function Documentation

◆ run()

template<class Matrix , int Size_>
static Type STK::hidden::InvertLowerSymMatrixDispatcher< Matrix, Size_ >::run ( Matrix const m,
CArraySquare< Type, Size_ > &  inv 
)
inlinestatic

Definition at line 262 of file STK_InvertLowerSym.h.

263 {
264 switch (m.sizeRows())
265 {
271 }
272 }
static Type invertLowerSymMatrix33(Matrix const &m, CArraySquare< Type, Size_ > &inv)
compute the inverse of the symmetric 3x3 matrix m using only its lower part and store the result in i...
static Type invertLowerSymMatrix22(Matrix const &m, CArraySquare< Type, Size_ > &inv)
compute the inverse of the lower symmetric 2x2 matrix m using only its lower part and store the resul...
static Type invertLowerSymMatrix44(Matrix const &m, CArraySquare< Type, Size_ > &inv)
compute the inverse of the symmetric 4x4 matrix m using only its lower part and store the result in i...
static Type invertLowerSymMatrixXX(Matrix const &m, CArraySquare< Type, Size_ > &inv)
compute the inverse of the lower symmetric 4x4 matrix m using only its lower part and store the resul...
static Type invertLowerSymMatrix11(Matrix const &m, CArraySquare< Type, Size_ > &inv)
compute the inverse of the lower symmetric matrix m of size 1x1 and store the result in inv.

References STK::hidden::InvertLowerSymMatrixImpl< Matrix, Size_ >::invertLowerSymMatrix11(), STK::hidden::InvertLowerSymMatrixImpl< Matrix, Size_ >::invertLowerSymMatrix22(), STK::hidden::InvertLowerSymMatrixImpl< Matrix, Size_ >::invertLowerSymMatrix33(), STK::hidden::InvertLowerSymMatrixImpl< Matrix, Size_ >::invertLowerSymMatrix44(), and STK::hidden::InvertLowerSymMatrixImpl< Matrix, Size_ >::invertLowerSymMatrixXX().


The documentation for this struct was generated from the following file: