PCL
In-Place Gauss-Jordan Solvers

Functions

void PCL_FUNC pcl::InPlaceGaussJordan (FMatrix &A, FMatrix &B)
 
void PCL_FUNC pcl::InPlaceGaussJordan (Matrix &A, Matrix &B)
 

Detailed Description

Function Documentation

◆ InPlaceGaussJordan() [1/2]

void PCL_FUNC pcl::InPlaceGaussJordan ( FMatrix A,
FMatrix B 
)

Solution to the linear system A*X = B

On output, A is replaced by its inverse matrix and B is the set of solution vectors X.

This is an overloaded function for the FMatrix type, which is a template instantiation of GenericMatrix for float.

◆ InPlaceGaussJordan() [2/2]

void PCL_FUNC pcl::InPlaceGaussJordan ( Matrix A,
Matrix B 
)

Solution to the linear system A*X = B

On output, A is replaced by its inverse matrix and B is the set of solution vectors X.

This is an overloaded function for the Matrix type, which is a template instantiation of GenericMatrix for double.