Mercurial > hg > octave-thorsten
diff src/OPERATORS/op-cs-s.cc @ 3538:0ff7323dab8b
[project @ 2000-02-02 12:36:25 by jwe]
author | jwe |
---|---|
date | Wed, 02 Feb 2000 12:36:37 +0000 (2000-02-02) |
parents | c4378ede0bec |
children | 6741bef26719 |
line wrap: on
line diff
--- a/src/OPERATORS/op-cs-s.cc +++ b/src/OPERATORS/op-cs-s.cc @@ -164,28 +164,28 @@ void install_cs_s_ops (void) { - INSTALL_BINOP (add, octave_complex, octave_scalar, add); - INSTALL_BINOP (sub, octave_complex, octave_scalar, sub); - INSTALL_BINOP (mul, octave_complex, octave_scalar, mul); - INSTALL_BINOP (div, octave_complex, octave_scalar, div); - INSTALL_BINOP (pow, octave_complex, octave_scalar, pow); - INSTALL_BINOP (ldiv, octave_complex, octave_scalar, ldiv); - INSTALL_BINOP (lt, octave_complex, octave_scalar, lt); - INSTALL_BINOP (le, octave_complex, octave_scalar, le); - INSTALL_BINOP (eq, octave_complex, octave_scalar, eq); - INSTALL_BINOP (ge, octave_complex, octave_scalar, ge); - INSTALL_BINOP (gt, octave_complex, octave_scalar, gt); - INSTALL_BINOP (ne, octave_complex, octave_scalar, ne); - INSTALL_BINOP (el_mul, octave_complex, octave_scalar, el_mul); - INSTALL_BINOP (el_div, octave_complex, octave_scalar, el_div); - INSTALL_BINOP (el_pow, octave_complex, octave_scalar, el_pow); - INSTALL_BINOP (el_ldiv, octave_complex, octave_scalar, el_ldiv); - INSTALL_BINOP (el_and, octave_complex, octave_scalar, el_and); - INSTALL_BINOP (el_or, octave_complex, octave_scalar, el_or); + INSTALL_BINOP (op_add, octave_complex, octave_scalar, add); + INSTALL_BINOP (op_sub, octave_complex, octave_scalar, sub); + INSTALL_BINOP (op_mul, octave_complex, octave_scalar, mul); + INSTALL_BINOP (op_div, octave_complex, octave_scalar, div); + INSTALL_BINOP (op_pow, octave_complex, octave_scalar, pow); + INSTALL_BINOP (op_ldiv, octave_complex, octave_scalar, ldiv); + INSTALL_BINOP (op_lt, octave_complex, octave_scalar, lt); + INSTALL_BINOP (op_le, octave_complex, octave_scalar, le); + INSTALL_BINOP (op_eq, octave_complex, octave_scalar, eq); + INSTALL_BINOP (op_ge, octave_complex, octave_scalar, ge); + INSTALL_BINOP (op_gt, octave_complex, octave_scalar, gt); + INSTALL_BINOP (op_ne, octave_complex, octave_scalar, ne); + INSTALL_BINOP (op_el_mul, octave_complex, octave_scalar, el_mul); + INSTALL_BINOP (op_el_div, octave_complex, octave_scalar, el_div); + INSTALL_BINOP (op_el_pow, octave_complex, octave_scalar, el_pow); + INSTALL_BINOP (op_el_ldiv, octave_complex, octave_scalar, el_ldiv); + INSTALL_BINOP (op_el_and, octave_complex, octave_scalar, el_and); + INSTALL_BINOP (op_el_or, octave_complex, octave_scalar, el_or); INSTALL_ASSIGNCONV (octave_complex, octave_scalar, octave_complex_matrix); - INSTALL_WIDENOP (octave_complex, octave_complex_matrix, complex_matrix_conv); + INSTALL_WIDENOP (op_octave_complex, octave_complex_matrix, complex_matrix_conv); } /*