Mercurial > hg > octave-nkf
diff liboctave/dbleSVD.h @ 11586:12df7854fa7c
strip trailing whitespace from source files
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 20 Jan 2011 17:24:59 -0500 |
parents | fd0a3ac60b0e |
children | 72c96de7a403 |
line wrap: on
line diff
--- a/liboctave/dbleSVD.h +++ b/liboctave/dbleSVD.h @@ -49,15 +49,15 @@ SVD (void) : type_computed (), sigma (), left_sm (), right_sm () { } - SVD (const Matrix& a, - type svd_type = SVD::std, driver svd_driver = SVD::GESVD) + SVD (const Matrix& a, + type svd_type = SVD::std, driver svd_driver = SVD::GESVD) : type_computed (), sigma (), left_sm (), right_sm () { init (a, svd_type, svd_driver); } - SVD (const Matrix& a, octave_idx_type& info, - type svd_type = SVD::std, driver svd_driver = SVD::GESVD) + SVD (const Matrix& a, octave_idx_type& info, + type svd_type = SVD::std, driver svd_driver = SVD::GESVD) : type_computed (), sigma (), left_sm (), right_sm () { info = init (a, svd_type, svd_driver); @@ -99,7 +99,7 @@ Matrix left_sm; Matrix right_sm; - octave_idx_type init (const Matrix& a, + octave_idx_type init (const Matrix& a, type svd_type = std, driver svd_driver = GESVD); };