Mercurial > hg > octave-nkf
comparison src/OPERATORS/op-m-cs.cc @ 3538:0ff7323dab8b
[project @ 2000-02-02 12:36:25 by jwe]
author | jwe |
---|---|
date | Wed, 02 Feb 2000 12:36:37 +0000 |
parents | 295f037b4b3e |
children | 6741bef26719 |
comparison
equal
deleted
inserted
replaced
3537:0985659e78d3 | 3538:0ff7323dab8b |
---|---|
107 } | 107 } |
108 | 108 |
109 void | 109 void |
110 install_m_cs_ops (void) | 110 install_m_cs_ops (void) |
111 { | 111 { |
112 INSTALL_BINOP (add, octave_matrix, octave_complex, add); | 112 INSTALL_BINOP (op_add, octave_matrix, octave_complex, add); |
113 INSTALL_BINOP (sub, octave_matrix, octave_complex, sub); | 113 INSTALL_BINOP (op_sub, octave_matrix, octave_complex, sub); |
114 INSTALL_BINOP (mul, octave_matrix, octave_complex, mul); | 114 INSTALL_BINOP (op_mul, octave_matrix, octave_complex, mul); |
115 INSTALL_BINOP (div, octave_matrix, octave_complex, div); | 115 INSTALL_BINOP (op_div, octave_matrix, octave_complex, div); |
116 INSTALL_BINOP (pow, octave_matrix, octave_complex, pow); | 116 INSTALL_BINOP (op_pow, octave_matrix, octave_complex, pow); |
117 INSTALL_BINOP (ldiv, octave_matrix, octave_complex, ldiv); | 117 INSTALL_BINOP (op_ldiv, octave_matrix, octave_complex, ldiv); |
118 INSTALL_BINOP (lt, octave_matrix, octave_complex, lt); | 118 INSTALL_BINOP (op_lt, octave_matrix, octave_complex, lt); |
119 INSTALL_BINOP (le, octave_matrix, octave_complex, le); | 119 INSTALL_BINOP (op_le, octave_matrix, octave_complex, le); |
120 INSTALL_BINOP (eq, octave_matrix, octave_complex, eq); | 120 INSTALL_BINOP (op_eq, octave_matrix, octave_complex, eq); |
121 INSTALL_BINOP (ge, octave_matrix, octave_complex, ge); | 121 INSTALL_BINOP (op_ge, octave_matrix, octave_complex, ge); |
122 INSTALL_BINOP (gt, octave_matrix, octave_complex, gt); | 122 INSTALL_BINOP (op_gt, octave_matrix, octave_complex, gt); |
123 INSTALL_BINOP (ne, octave_matrix, octave_complex, ne); | 123 INSTALL_BINOP (op_ne, octave_matrix, octave_complex, ne); |
124 INSTALL_BINOP (el_mul, octave_matrix, octave_complex, el_mul); | 124 INSTALL_BINOP (op_el_mul, octave_matrix, octave_complex, el_mul); |
125 INSTALL_BINOP (el_div, octave_matrix, octave_complex, el_div); | 125 INSTALL_BINOP (op_el_div, octave_matrix, octave_complex, el_div); |
126 INSTALL_BINOP (el_pow, octave_matrix, octave_complex, el_pow); | 126 INSTALL_BINOP (op_el_pow, octave_matrix, octave_complex, el_pow); |
127 INSTALL_BINOP (el_ldiv, octave_matrix, octave_complex, el_ldiv); | 127 INSTALL_BINOP (op_el_ldiv, octave_matrix, octave_complex, el_ldiv); |
128 INSTALL_BINOP (el_and, octave_matrix, octave_complex, el_and); | 128 INSTALL_BINOP (op_el_and, octave_matrix, octave_complex, el_and); |
129 INSTALL_BINOP (el_or, octave_matrix, octave_complex, el_or); | 129 INSTALL_BINOP (op_el_or, octave_matrix, octave_complex, el_or); |
130 | 130 |
131 INSTALL_ASSIGNCONV (octave_matrix, octave_complex, octave_complex_matrix); | 131 INSTALL_ASSIGNCONV (octave_matrix, octave_complex, octave_complex_matrix); |
132 | 132 |
133 INSTALL_WIDENOP (octave_matrix, octave_complex_matrix, complex_matrix_conv); | 133 INSTALL_WIDENOP (op_octave_matrix, octave_complex_matrix, complex_matrix_conv); |
134 } | 134 } |
135 | 135 |
136 /* | 136 /* |
137 ;;; Local Variables: *** | 137 ;;; Local Variables: *** |
138 ;;; mode: C++ *** | 138 ;;; mode: C++ *** |