diff liboctave/dbleQR.h @ 2763:d9d00d7e271e

[project @ 1997-03-01 02:14:33 by jwe]
author jwe
date Sat, 01 Mar 1997 02:14:33 +0000
parents 1b57120c997b
children bca5fbab2e52
line wrap: on
line diff
--- a/liboctave/dbleQR.h
+++ b/liboctave/dbleQR.h
@@ -45,7 +45,7 @@
 
   QR (void) : q (), r () { }
 
-  QR (const Matrix& A, type qr_type = QR::std);
+  QR (const Matrix&, QR::type = QR::std);
 
   QR (const QR& a) : q (a.q), r (a.r) { }
 
@@ -61,11 +61,13 @@
 
   ~QR (void) { }
 
+  void init (const Matrix&, QR::type);
+
   Matrix Q (void) const { return q; }
 
   Matrix R (void) const { return r; }
 
-  friend ostream&  operator << (ostream& os, const QR& a);
+  friend ostream&  operator << (ostream&, const QR&);
 
 protected: