diff liboctave/SparseQR.h @ 7505:f5005d9510f4

Remove dispatched sparse functions and treat in the generic versions of the functions
author David Bateman <dbateman@free.fr>
date Wed, 20 Feb 2008 15:52:11 -0500
parents a1dbe9d80eee
children 82be108cc558
line wrap: on
line diff
--- a/liboctave/SparseQR.h
+++ b/liboctave/SparseQR.h
@@ -63,6 +63,8 @@
 
     Matrix C (const Matrix &b) const;
 
+    Matrix Q (void) const;
+
     int count;
 
     octave_idx_type nrows;
@@ -114,6 +116,8 @@
 
   Matrix C (const Matrix &b) const { return rep->C(b); }
 
+  Matrix Q (void) const { return rep->Q(); }
+
   friend Matrix qrsolve (const SparseMatrix &a, const Matrix &b, 
 			 octave_idx_type &info);