Mercurial > hg > octave-nkf
diff liboctave/dbleSVD.h @ 1544:f1931fc63ce9
[project @ 1995-10-06 05:57:56 by jwe]
author | jwe |
---|---|
date | Fri, 06 Oct 1995 06:01:19 +0000 |
parents | d6e96e0bc681 |
children | cbdbec67ad60 |
line wrap: on
line diff
--- a/liboctave/dbleSVD.h +++ b/liboctave/dbleSVD.h @@ -74,9 +74,9 @@ DiagMatrix singular_values (void) const { return sigma; } - Matrix left_singular_matrix (void); + Matrix left_singular_matrix (void) const; - Matrix right_singular_matrix (void); + Matrix right_singular_matrix (void) const; friend ostream& operator << (ostream& os, const SVD& a); @@ -84,6 +84,8 @@ int init (const Matrix& a, type svd_type = std); + SVD::type type_computed; + DiagMatrix sigma; Matrix left_sm; Matrix right_sm;