diff liboctave/MatrixType.cc @ 10350:12884915a8e4

merge MArray classes & improve Array interface
author Jaroslav Hajek <highegg@gmail.com>
date Sat, 23 Jan 2010 21:41:03 +0100
parents 07ebe522dac2
children bdf5d85cfc5e
line wrap: on
line diff
--- a/liboctave/MatrixType.cc
+++ b/liboctave/MatrixType.cc
@@ -58,7 +58,7 @@
 
 template<class T> 
 MatrixType::matrix_type 
-matrix_real_probe (const MArray2<T>& a)
+matrix_real_probe (const MArray<T>& a)
 {
   MatrixType::matrix_type typ;
   octave_idx_type nrows = a.rows ();
@@ -115,7 +115,7 @@
 
 template<class T> 
 MatrixType::matrix_type 
-matrix_complex_probe (const MArray2<T>& a)
+matrix_complex_probe (const MArray<T>& a)
 {
   MatrixType::matrix_type typ;
   octave_idx_type nrows = a.rows ();