diff liboctave/SparseCmplxQR.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/SparseCmplxQR.h	Wed Feb 20 14:56:22 2008 -0500
+++ b/liboctave/SparseCmplxQR.h	Wed Feb 20 15:52:11 2008 -0500
@@ -63,6 +63,8 @@
 
     ComplexMatrix C (const ComplexMatrix &b) const;
 
+    ComplexMatrix Q (void) const;
+
     int count;
 
     octave_idx_type nrows;
@@ -116,6 +118,8 @@
 
   ComplexMatrix C (const ComplexMatrix &b) const { return rep->C(b); }
 
+  ComplexMatrix Q (void) const { return rep->Q(); }
+
   friend ComplexMatrix qrsolve (const SparseComplexMatrix &a, const Matrix &b,
 				octave_idx_type &info);