diff liboctave/dbleQRP.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 8b262e771614
line wrap: on
line diff
--- a/liboctave/dbleQRP.h
+++ b/liboctave/dbleQRP.h
@@ -38,7 +38,7 @@
 
   QRP (void) : QR (), p () { }
 
-  QRP (const Matrix& A, QR::type qr_type = QR::std);
+  QRP (const Matrix&, QR::type = QR::std);
 
   QRP (const QRP& a) : QR (a), p (a.p) { }
 
@@ -55,9 +55,11 @@
 
   ~QRP (void) { }
 
+  void init (const Matrix&, QR::type = QR::std);
+
   Matrix P (void) const { return p; }
 
-  friend ostream&  operator << (ostream& os, const QRP& a);
+  friend ostream&  operator << (ostream&, const QRP&);
 
 protected: