Mercurial > hg > octave-lyh
changeset 1529:8a6f67c94de8
[project @ 1995-10-05 01:48:40 by jwe]
author | jwe |
---|---|
date | Thu, 05 Oct 1995 01:51:41 +0000 |
parents | dc527156c38c |
children | 479ee97c85c6 |
files | liboctave/CmplxSVD.h liboctave/dbleGEPBAL.h liboctave/dbleHESS.h liboctave/dbleSVD.h |
diffstat | 4 files changed, 5 insertions(+), 10 deletions(-) [+] |
line wrap: on
line diff
--- a/liboctave/CmplxSVD.h +++ b/liboctave/CmplxSVD.h @@ -43,12 +43,13 @@ ComplexSVD (void) { } - ComplexSVD (const ComplexMatrix& a, SVD::type svd_type) + ComplexSVD (const ComplexMatrix& a, SVD::type svd_type = SVD::std) { init (a, svd_type); } - ComplexSVD (const ComplexMatrix& a, int& info, SVD::type svd_type) + ComplexSVD (const ComplexMatrix& a, int& info, + SVD::type svd_type = SVD::std) { info = init (a, svd_type); }
--- a/liboctave/dbleGEPBAL.h +++ b/liboctave/dbleGEPBAL.h @@ -40,9 +40,6 @@ GEPBALANCE (void) { } - GEPBALANCE (const Matrix& a, const Matrix &, const char *balance_job); - - GEPBALANCE (const Matrix& a, const Matrix& b, const char * balance_job) { init (a, b, balance_job);
--- a/liboctave/dbleHESS.h +++ b/liboctave/dbleHESS.h @@ -40,9 +40,6 @@ HESS (void) { } - HESS (const Matrix& a); - HESS (const Matrix&a, int& info); - HESS (const Matrix& a) { init (a); } HESS (const Matrix& a, int& info) { info = init (a); }
--- a/liboctave/dbleSVD.h +++ b/liboctave/dbleSVD.h @@ -48,9 +48,9 @@ SVD (void) { } - SVD (const Matrix& a, type svd_type) { init (a, svd_type); } + SVD (const Matrix& a, type svd_type = SVD::std) { init (a, svd_type); } - SVD (const Matrix& a, int& info, type svd_type) + SVD (const Matrix& a, int& info, type svd_type = SVD::std) { info = init (a, svd_type); }