IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
Namespaces | Functions
LUDecomposition.h File Reference

LU decomposition functions. More...

#include <IPSDKMath/IPSDKMathExports.h>
#include <IPSDKMath/LinearAlgebra/LinearAlgebraTypes.h>

Go to the source code of this file.

Namespaces

 ipsdk
 Main namespace for IPSDK library.
 
 ipsdk::math
 Namespace agregating IPSDK mathematical routines and classes.
 

Functions

IPSDKMATH_API bool ipsdk::math::luSolve (const Matrix &matA, const Vector &vecB, Vector &vecX)
 linear system resolution using lu decomposition Solved system is : matA x VecX = vecB with More...
 
IPSDKMATH_API bool ipsdk::math::luInverse (Matrix &matA)
 in place inversion of a nxn squared matrix using lu decomposition method More...
 
IPSDKMATH_API bool ipsdk::math::luInverse (const Matrix &matA, Matrix &matInvA)
 inversion of a nxn squared matrix using lu decomposition method With : More...
 
IPSDKMATH_API bool ipsdk::math::upperTriangularInverse (Matrix &matA)
 inversion of a nxn upper triangular matrix More...
 
IPSDKMATH_API bool ipsdk::math::lowerTriangularInverse (Matrix &matA)
 inversion of a nxn lower triangular matrix More...
 

Detailed Description

LU decomposition functions.

Author
E. Noirfalise
Date
2016/03/02