diff liboctave/SparseQR.h @ 10350:12884915a8e4

merge MArray classes & improve Array interface
author Jaroslav Hajek <highegg@gmail.com>
date Sat, 23 Jan 2010 21:41:03 +0100
parents cbc402e64d83
children fd0a3ac60b0e
line wrap: on
line diff
--- a/liboctave/SparseQR.h
+++ b/liboctave/SparseQR.h
@@ -145,7 +145,7 @@
 extern Matrix qrsolve (const SparseMatrix &a, const Matrix &b, 
                        octave_idx_type &info);
 
-extern Matrix qrsolve (const SparseMatrix &a, const MArray2<double> &b, 
+extern Matrix qrsolve (const SparseMatrix &a, const MArray<double> &b, 
                        octave_idx_type &info);
 
 extern SparseMatrix qrsolve (const SparseMatrix &a, const SparseMatrix &b,
@@ -154,7 +154,7 @@
 extern ComplexMatrix qrsolve (const SparseMatrix &a, const ComplexMatrix &b,
                               octave_idx_type &info);
 
-extern ComplexMatrix qrsolve (const SparseMatrix &a, const MArray2<Complex> &b, 
+extern ComplexMatrix qrsolve (const SparseMatrix &a, const MArray<Complex> &b, 
                               octave_idx_type &info);
 
 extern SparseComplexMatrix qrsolve (const SparseMatrix &a,