diff liboctave/dbleQR.cc @ 2763:d9d00d7e271e

[project @ 1997-03-01 02:14:33 by jwe]
author jwe
date Sat, 01 Mar 1997 02:14:33 +0000
parents d864935059f4
children eedc2f3f61f7
line wrap: on
line diff
--- a/liboctave/dbleQR.cc	Fri Feb 28 08:26:43 1997 +0000
+++ b/liboctave/dbleQR.cc	Sat Mar 01 02:14:33 1997 +0000
@@ -45,6 +45,13 @@
 }
 
 QR::QR (const Matrix& a, QR::type qr_type)
+  : q (), r ()
+{
+  init (a, qr_type);
+}
+
+void
+QR::init (const Matrix& a, QR::type qr_type)
 {
   int m = a.rows ();
   int n = a.cols ();