Mercurial > hg > octave-nkf
diff liboctave/CMatrix.cc @ 3769:7c8e3c42ed04
[project @ 2001-01-31 22:15:51 by jwe]
author | jwe |
---|---|
date | Wed, 31 Jan 2001 22:15:55 +0000 |
parents | 735549d1148e |
children | ba548facf43b |
line wrap: on
line diff
--- a/liboctave/CMatrix.cc +++ b/liboctave/CMatrix.cc @@ -194,7 +194,7 @@ if (rows () != a.rows () || cols () != a.cols ()) return false; - return equal (data (), a.data (), length ()); + return mx_inline_equal (data (), a.data (), length ()); } bool @@ -742,8 +742,8 @@ int a_len = a.length (); ComplexMatrix retval; if (a_len > 0) - retval = ComplexMatrix (conj_dup (a.data (), a_len), a.rows (), - a.cols ()); + retval = ComplexMatrix (mx_inline_conj_dup (a.data (), a_len), + a.rows (), a.cols ()); return retval; } @@ -2023,7 +2023,7 @@ Complex *d = fortran_vec (); // Ensures only one reference to my privates! - add2 (d, a.data (), length ()); + mx_inline_add2 (d, a.data (), length ()); return *this; } @@ -2047,7 +2047,7 @@ Complex *d = fortran_vec (); // Ensures only one reference to my privates! - subtract2 (d, a.data (), length ()); + mx_inline_subtract2 (d, a.data (), length ()); return *this; }