Home
last modified time | relevance | path

Searched refs:QRSolve (Results 1 – 4 of 4) sorted by relevance

/dports/math/xlife++/xlifepp-sources-v2.0.1-2018-05-09/src/largeMatrix/
H A DMatrixEntry.cpp1781 void QRSolve(const MatrixEntry& mat, MatrixEntry* matR, VectorEntry* rhs) in QRSolve() function
1798 if(vtr==_real) QRSolve(*mat.rEntries_p, lm, rhs->rEntries_p); in QRSolve()
1808 QRSolve(*cmat.cEntries_p, lmc, rhs->cEntries_p); in QRSolve()
1812 else QRSolve(*mat.rEntries_p, lm, sm); in QRSolve()
1822 if(vtr==_complex) QRSolve(*mat.cEntries_p, lm, rhs->cEntries_p); in QRSolve()
1826 QRSolve(*mat.cEntries_p, lm, rhs->cEntries_p); in QRSolve()
1829 else QRSolve(*mat.cEntries_p, lm, sm); in QRSolve()
H A DMatrixEntry.hpp206 void QRSolve(const MatrixEntry&, MatrixEntry*, VectorEntry*); //!< QR solver (only in …
H A DLargeMatrix.hpp4372 void QRSolve(const LargeMatrix<T>& mat, std::vector<std::vector<std::pair<number_t,K> > >& rhss) in QRSolve() function
4410 void QRSolve(const LargeMatrix<T>& mat, LargeMatrix<T>* mat2, std::vector<K>* rhs) in QRSolve() function
4449 QRSolve(mat,rhss); //call general QRSolver in QRSolve()
/dports/math/xlife++/xlifepp-sources-v2.0.1-2018-05-09/src/essentialConditions/
H A DConstraints.cpp1218 if(!matU.isId(theTolerance)) QRSolve(matU,&matR,rhs_p); // solve upper triangular system in reduceConstraints()
1223 if(!matU.isId(theTolerance)) QRSolve(matU,0,rhs_p); // solve upper triangular system in reduceConstraints()