15 #ifndef __IPSDKMATH_QRDECOMPOSITION_H__ 16 #define __IPSDKMATH_QRDECOMPOSITION_H__ 61 #endif // __IPSDKMATH_QRDECOMPOSITION_H__ Definition of import/export macro for library.
boost::numeric::ublas::matrix< ipReal64 > Matrix
matrix type associated to library
Definition: LinearAlgebraTypes.h:48
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
Predefined types for linear algebra management.
boost::numeric::ublas::vector< ipReal64 > Vector
vector type associated to library
Definition: LinearAlgebraTypes.h:36
IPSDKMATH_API void qrDecomposition(const Matrix &matA, Matrix &matQ, Matrix &matR)
QR decomposition of mxn matrix Given mn = min(m,n), we have :
#define IPSDKMATH_API
Import/Export macro for library IPSDKMath.
Definition: IPSDKMathExports.h:27
IPSDKMATH_API bool qrSolve(const Matrix &matA, const Vector &vecB, Vector &vecX)
linear system resolution using qr decomposition method Solved system is : matA x VecX = vecB with ...