2928
|
1 /* |
|
2 |
|
3 Copyright (C) 1996, 1997 John W. Eaton |
|
4 |
|
5 This file is part of Octave. |
|
6 |
|
7 Octave is free software; you can redistribute it and/or modify it |
|
8 under the terms of the GNU General Public License as published by the |
|
9 Free Software Foundation; either version 2, or (at your option) any |
|
10 later version. |
|
11 |
|
12 Octave is distributed in the hope that it will be useful, but WITHOUT |
|
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
15 for more details. |
|
16 |
|
17 You should have received a copy of the GNU General Public License |
|
18 along with Octave; see the file COPYING. If not, write to the Free |
|
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
20 |
|
21 */ |
|
22 |
|
23 #if defined (__GNUG__) |
|
24 #pragma implementation |
|
25 #endif |
|
26 |
|
27 #ifdef HAVE_CONFIG_H |
|
28 #include <config.h> |
|
29 #endif |
|
30 |
|
31 #include "gripes.h" |
|
32 #include "ov.h" |
|
33 #include "ov-scalar.h" |
|
34 #include "ov-re-mat.h" |
|
35 #include "ov-typeinfo.h" |
|
36 #include "ops.h" |
|
37 #include "xdiv.h" |
|
38 #include "xpow.h" |
|
39 |
3203
|
40 // scalar unary ops. |
|
41 |
|
42 DEFUNOP_OP (not, scalar, !) |
|
43 DEFUNOP_OP (uminus, scalar, -) |
|
44 DEFUNOP_OP (transpose, scalar, /* no-op */) |
|
45 DEFUNOP_OP (hermitian, scalar, /* no-op */) |
|
46 |
|
47 DEFNCUNOP_METHOD (incr, scalar, increment) |
|
48 DEFNCUNOP_METHOD (decr, scalar, decrement) |
|
49 |
2928
|
50 // scalar by scalar ops. |
|
51 |
|
52 DEFBINOP_OP (add, scalar, scalar, +) |
|
53 DEFBINOP_OP (sub, scalar, scalar, -) |
|
54 DEFBINOP_OP (mul, scalar, scalar, *) |
|
55 |
|
56 DEFBINOP (div, scalar, scalar) |
|
57 { |
|
58 CAST_BINOP_ARGS (const octave_scalar&, const octave_scalar&); |
|
59 |
|
60 double d = v2.double_value (); |
|
61 |
|
62 if (d == 0.0) |
|
63 gripe_divide_by_zero (); |
|
64 |
|
65 return octave_value (v1.double_value () / d); |
|
66 } |
|
67 |
|
68 DEFBINOP_FN (pow, scalar, scalar, xpow) |
|
69 |
|
70 DEFBINOP (ldiv, scalar, scalar) |
|
71 { |
|
72 CAST_BINOP_ARGS (const octave_scalar&, const octave_scalar&); |
|
73 |
|
74 double d = v1.double_value (); |
|
75 |
|
76 if (d == 0.0) |
|
77 gripe_divide_by_zero (); |
|
78 |
|
79 return octave_value (v2.double_value () / d); |
|
80 } |
|
81 |
|
82 DEFBINOP_OP (lt, scalar, scalar, <) |
|
83 DEFBINOP_OP (le, scalar, scalar, <=) |
|
84 DEFBINOP_OP (eq, scalar, scalar, ==) |
|
85 DEFBINOP_OP (ge, scalar, scalar, >=) |
|
86 DEFBINOP_OP (gt, scalar, scalar, >) |
|
87 DEFBINOP_OP (ne, scalar, scalar, !=) |
|
88 |
|
89 DEFBINOP_OP (el_mul, scalar, scalar, *) |
|
90 |
|
91 DEFBINOP (el_div, scalar, scalar) |
|
92 { |
|
93 CAST_BINOP_ARGS (const octave_scalar&, const octave_scalar&); |
|
94 |
|
95 double d = v2.double_value (); |
|
96 |
|
97 if (d == 0.0) |
|
98 gripe_divide_by_zero (); |
|
99 |
|
100 return octave_value (v1.double_value () / d); |
|
101 } |
|
102 |
|
103 DEFBINOP_FN (el_pow, scalar, scalar, xpow) |
|
104 |
|
105 DEFBINOP (el_ldiv, scalar, scalar) |
|
106 { |
|
107 CAST_BINOP_ARGS (const octave_scalar&, const octave_scalar&); |
|
108 |
|
109 double d = v1.double_value (); |
|
110 |
|
111 if (d == 0.0) |
|
112 gripe_divide_by_zero (); |
|
113 |
|
114 return octave_value (v2.double_value () / d); |
|
115 } |
|
116 |
3799
|
117 DEFBINOP_OP (el_and, scalar, scalar, &&) |
|
118 DEFBINOP_OP (el_or, scalar, scalar, ||) |
2928
|
119 |
|
120 DEFCONV (matrix_conv, scalar, matrix) |
|
121 { |
|
122 CAST_CONV_ARG (const octave_scalar&); |
|
123 |
|
124 return new octave_matrix (v.matrix_value ()); |
|
125 } |
|
126 |
|
127 void |
|
128 install_s_s_ops (void) |
|
129 { |
3538
|
130 INSTALL_UNOP (op_not, octave_scalar, not); |
|
131 INSTALL_UNOP (op_uminus, octave_scalar, uminus); |
|
132 INSTALL_UNOP (op_transpose, octave_scalar, transpose); |
|
133 INSTALL_UNOP (op_hermitian, octave_scalar, hermitian); |
3203
|
134 |
3538
|
135 INSTALL_NCUNOP (op_incr, octave_scalar, incr); |
|
136 INSTALL_NCUNOP (op_decr, octave_scalar, decr); |
3203
|
137 |
3538
|
138 INSTALL_BINOP (op_add, octave_scalar, octave_scalar, add); |
|
139 INSTALL_BINOP (op_sub, octave_scalar, octave_scalar, sub); |
|
140 INSTALL_BINOP (op_mul, octave_scalar, octave_scalar, mul); |
|
141 INSTALL_BINOP (op_div, octave_scalar, octave_scalar, div); |
|
142 INSTALL_BINOP (op_pow, octave_scalar, octave_scalar, pow); |
|
143 INSTALL_BINOP (op_ldiv, octave_scalar, octave_scalar, ldiv); |
|
144 INSTALL_BINOP (op_lt, octave_scalar, octave_scalar, lt); |
|
145 INSTALL_BINOP (op_le, octave_scalar, octave_scalar, le); |
|
146 INSTALL_BINOP (op_eq, octave_scalar, octave_scalar, eq); |
|
147 INSTALL_BINOP (op_ge, octave_scalar, octave_scalar, ge); |
|
148 INSTALL_BINOP (op_gt, octave_scalar, octave_scalar, gt); |
|
149 INSTALL_BINOP (op_ne, octave_scalar, octave_scalar, ne); |
|
150 INSTALL_BINOP (op_el_mul, octave_scalar, octave_scalar, el_mul); |
|
151 INSTALL_BINOP (op_el_div, octave_scalar, octave_scalar, el_div); |
|
152 INSTALL_BINOP (op_el_pow, octave_scalar, octave_scalar, el_pow); |
|
153 INSTALL_BINOP (op_el_ldiv, octave_scalar, octave_scalar, el_ldiv); |
|
154 INSTALL_BINOP (op_el_and, octave_scalar, octave_scalar, el_and); |
|
155 INSTALL_BINOP (op_el_or, octave_scalar, octave_scalar, el_or); |
2928
|
156 |
|
157 INSTALL_ASSIGNCONV (octave_scalar, octave_scalar, octave_matrix); |
|
158 |
3540
|
159 INSTALL_WIDENOP (octave_scalar, octave_matrix, matrix_conv); |
2928
|
160 } |
|
161 |
|
162 /* |
|
163 ;;; Local Variables: *** |
|
164 ;;; mode: C++ *** |
|
165 ;;; End: *** |
|
166 */ |