Mercurial > hg > octave-nkf
diff liboctave/dbleCHOL.h @ 5340:15843d76156d
[project @ 2005-05-06 16:26:58 by jwe]
author | jwe |
---|---|
date | Fri, 06 May 2005 16:26:59 +0000 |
parents | 4c8a2e4e0717 |
children | 143b556ce725 |
line wrap: on
line diff
--- a/liboctave/dbleCHOL.h +++ b/liboctave/dbleCHOL.h @@ -51,6 +51,9 @@ Matrix chol_matrix (void) const { return chol_mat; } + // Compute the inverse of a matrix using the Cholesky factorization. + Matrix inverse (void) const; + friend std::ostream& operator << (std::ostream& os, const CHOL& a); private: @@ -60,6 +63,8 @@ octave_idx_type init (const Matrix& a); }; +Matrix chol2inv (const Matrix& r); + #endif /*