diff liboctave/dbleQR.h @ 539:5ec10a984241

[project @ 1994-07-21 22:40:04 by jwe]
author jwe
date Thu, 21 Jul 1994 22:42:09 +0000
parents 3d4b4f0fa5ba
children 714fd17fca28
line wrap: on
line diff
--- a/liboctave/dbleQR.h	Thu Jul 21 22:40:04 1994 +0000
+++ b/liboctave/dbleQR.h	Thu Jul 21 22:42:09 1994 +0000
@@ -38,9 +38,16 @@
 {
 public:
 
+  enum type
+    {
+      std,
+      raw,
+      economy,
+    };
+
   QR (void) {}
 
-  QR (const Matrix& A);
+  QR (const Matrix& A, type qr_type = QR::std);
 
   QR (const QR& a);
 
@@ -51,7 +58,7 @@
 
   friend ostream&  operator << (ostream& os, const QR& a);
 
-private:
+protected:
 
   Matrix q;
   Matrix r;