Mercurial > hg > octave-nkf
diff src/data.cc @ 4569:01e4957409a4
[project @ 2003-10-30 05:48:17 by jwe]
author | jwe |
---|---|
date | Thu, 30 Oct 2003 05:48:17 +0000 |
parents | fc30061d01da |
children | 77566be8b9e9 |
line wrap: on
line diff
--- a/src/data.cc +++ b/src/data.cc @@ -370,14 +370,14 @@ { \ if (arg.is_real_type ()) \ { \ - Matrix tmp = arg.matrix_value (); \ + NDArray tmp = arg.array_value (); \ \ if (! error_state) \ retval = tmp.FCN (dim); \ } \ else if (arg.is_complex_type ()) \ { \ - ComplexMatrix tmp = arg.complex_matrix_value (); \ + ComplexNDArray tmp = arg.complex_array_value (); \ \ if (! error_state) \ retval = tmp.FCN (dim); \