RcdMathLib_doc
Open Source Library for Linear and Non-linear Algebra
pseudo_inverse.h File Reference

Compute the pseudo-inverse of a matrix. More...

Go to the source code of this file.

Enumerations

enum  ALGORITHM { Moore_Penrose, Householder, Givens, Gauss }
 Possible algorithms to compute the pseudo-inverse matrix. More...
 

Detailed Description

Compute the pseudo-inverse of a matrix.

The pseudo-inverse matrix can be computed using the Singular Value Decomposition (SVD), Householder, or Givens algorithms.

Author
Zakaria Kasmi zkasm.nosp@m.i@in.nosp@m.f.fu-.nosp@m.berl.nosp@m.in.de

Definition in file pseudo_inverse.h.

Enumeration Type Documentation

◆ ALGORITHM

enum ALGORITHM

Possible algorithms to compute the pseudo-inverse matrix.

Enumerator
Moore_Penrose 

Moore–Penrose algorithm.

Householder 

Householder algorithm.

Givens 

Givens algorithm.

Gauss 

Gaussian elimination with pivoting algorithm.

Definition at line 30 of file pseudo_inverse.h.