Mercurial > hg > octave-thorsten
comparison src/OPERATORS/op-cm-cm.cc @ 4915:c638c144d4da
[project @ 2004-07-23 19:01:22 by jwe]
author | jwe |
---|---|
date | Fri, 23 Jul 2004 19:01:23 +0000 |
parents | c7ae43dfdea4 |
children | c0d8e8afa82f |
comparison
equal
deleted
inserted
replaced
4914:1c0442da75fd | 4915:c638c144d4da |
---|---|
106 } | 106 } |
107 | 107 |
108 DEFNDBINOP_FN (el_and, complex_matrix, complex_matrix, complex_array, complex_array, mx_el_and) | 108 DEFNDBINOP_FN (el_and, complex_matrix, complex_matrix, complex_array, complex_array, mx_el_and) |
109 DEFNDBINOP_FN (el_or, complex_matrix, complex_matrix, complex_array, complex_array, mx_el_or) | 109 DEFNDBINOP_FN (el_or, complex_matrix, complex_matrix, complex_array, complex_array, mx_el_or) |
110 | 110 |
111 DEFNDCATOP_FN (cm_cm, complex_matrix, complex_matrix, complex_array, complex_array, concat) | |
112 | |
111 DEFNDASSIGNOP_FN (assign, complex_matrix, complex_matrix, complex_array, assign) | 113 DEFNDASSIGNOP_FN (assign, complex_matrix, complex_matrix, complex_array, assign) |
112 | 114 |
113 void | 115 void |
114 install_cm_cm_ops (void) | 116 install_cm_cm_ops (void) |
115 { | 117 { |
138 INSTALL_BINOP (op_el_pow, octave_complex_matrix, octave_complex_matrix, el_pow); | 140 INSTALL_BINOP (op_el_pow, octave_complex_matrix, octave_complex_matrix, el_pow); |
139 INSTALL_BINOP (op_el_ldiv, octave_complex_matrix, octave_complex_matrix, el_ldiv); | 141 INSTALL_BINOP (op_el_ldiv, octave_complex_matrix, octave_complex_matrix, el_ldiv); |
140 INSTALL_BINOP (op_el_and, octave_complex_matrix, octave_complex_matrix, el_and); | 142 INSTALL_BINOP (op_el_and, octave_complex_matrix, octave_complex_matrix, el_and); |
141 INSTALL_BINOP (op_el_or, octave_complex_matrix, octave_complex_matrix, el_or); | 143 INSTALL_BINOP (op_el_or, octave_complex_matrix, octave_complex_matrix, el_or); |
142 | 144 |
145 INSTALL_CATOP (octave_complex_matrix, octave_complex_matrix, cm_cm); | |
146 | |
143 INSTALL_ASSIGNOP (op_asn_eq, octave_complex_matrix, octave_complex_matrix, assign); | 147 INSTALL_ASSIGNOP (op_asn_eq, octave_complex_matrix, octave_complex_matrix, assign); |
144 } | 148 } |
145 | 149 |
146 /* | 150 /* |
147 ;;; Local Variables: *** | 151 ;;; Local Variables: *** |