Mercurial > hg > octave-nkf
diff liboctave/dbleSVD.h @ 5275:23b37da9fd5b
[project @ 2005-04-08 16:07:35 by jwe]
author | jwe |
---|---|
date | Fri, 08 Apr 2005 16:07:37 +0000 |
parents | e35b034d3523 |
children | 4c8a2e4e0717 |
line wrap: on
line diff
--- a/liboctave/dbleSVD.h +++ b/liboctave/dbleSVD.h @@ -44,7 +44,7 @@ SVD (const Matrix& a, type svd_type = SVD::std) { init (a, svd_type); } - SVD (const Matrix& a, int& info, type svd_type = SVD::std) + SVD (const Matrix& a, octave_idx_type& info, type svd_type = SVD::std) { info = init (a, svd_type); } @@ -84,7 +84,7 @@ Matrix left_sm; Matrix right_sm; - int init (const Matrix& a, type svd_type = std); + octave_idx_type init (const Matrix& a, type svd_type = std); }; #endif