# HG changeset patch # User jwe # Date 812857901 0 # Node ID 8a6f67c94de812ec4e3b704775d4753189452f5a # Parent dc527156c38cd4e6e3559097971e2ee33c695216 [project @ 1995-10-05 01:48:40 by jwe] diff -r dc527156c38c -r 8a6f67c94de8 liboctave/CmplxSVD.h --- a/liboctave/CmplxSVD.h Thu Oct 05 01:45:30 1995 +0000 +++ b/liboctave/CmplxSVD.h Thu Oct 05 01:51:41 1995 +0000 @@ -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); } diff -r dc527156c38c -r 8a6f67c94de8 liboctave/dbleGEPBAL.h --- a/liboctave/dbleGEPBAL.h Thu Oct 05 01:45:30 1995 +0000 +++ b/liboctave/dbleGEPBAL.h Thu Oct 05 01:51:41 1995 +0000 @@ -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); diff -r dc527156c38c -r 8a6f67c94de8 liboctave/dbleHESS.h --- a/liboctave/dbleHESS.h Thu Oct 05 01:45:30 1995 +0000 +++ b/liboctave/dbleHESS.h Thu Oct 05 01:51:41 1995 +0000 @@ -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); } diff -r dc527156c38c -r 8a6f67c94de8 liboctave/dbleSVD.h --- a/liboctave/dbleSVD.h Thu Oct 05 01:45:30 1995 +0000 +++ b/liboctave/dbleSVD.h Thu Oct 05 01:51:41 1995 +0000 @@ -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); }