1 #ifndef DataFormat_Math_invertPosDefMatrix_H
2 #define DataFormat_Math_invertPosDefMatrix_H
4 #define SMATRIX_USE_CONSTEXPR
5 #include "Math/SMatrix.h"
6 #include "Math/CholeskyDecomp.h"
8 template<
typename T,
unsigned int N>
11 ROOT::Math::CholeskyDecomp<T,N> decomp(
m);
20 template<
typename T,
unsigned int N>
22 ROOT::Math::SMatrix<
T,
N,
N,ROOT::Math::MatRepSym<T,N> > & mOut) {
24 ROOT::Math::CholeskyDecomp<T,N> decomp(mIn);
bool invertPosDefMatrix(ROOT::Math::SMatrix< T, N, N, ROOT::Math::MatRepSym< T, N > > &m)