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	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);
     }
--- 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); 
--- 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); }
--- 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);
     }