Mercurial > hg > octave-nkf
annotate libinterp/operators/op-s-cs.cc @ 19669:c2031ad6dbe7
Fix octave header includes in audiodevinfo
* audiodevinfo.cc: change includes to use local octave headers
author | Vytautas Jančauskas <unaudio@gmail.com> |
---|---|
date | Wed, 11 Sep 2013 21:32:14 +0300 |
parents | 2fc554ffbc28 |
children | d63878346099 |
rev | line source |
---|---|
2928 | 1 /* |
2 | |
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
3 Copyright (C) 1996-2012 John W. Eaton |
2928 | 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 | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
2928 | 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 | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
2928 | 20 |
21 */ | |
22 | |
23 #ifdef HAVE_CONFIG_H | |
24 #include <config.h> | |
25 #endif | |
26 | |
27 #include "gripes.h" | |
4055 | 28 #include "oct-obj.h" |
2928 | 29 #include "ov.h" |
30 #include "ov-scalar.h" | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
31 #include "ov-float.h" |
2928 | 32 #include "ov-complex.h" |
33 #include "ov-cx-mat.h" | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
34 #include "ov-flt-cx-mat.h" |
2928 | 35 #include "ov-typeinfo.h" |
36 #include "ops.h" | |
37 #include "xdiv.h" | |
38 #include "xpow.h" | |
39 | |
40 // scalar by complex scalar ops. | |
41 | |
42 DEFBINOP_OP (add, scalar, complex, +) | |
43 DEFBINOP_OP (sub, scalar, complex, -) | |
44 DEFBINOP_OP (mul, scalar, complex, *) | |
45 | |
46 DEFBINOP (div, scalar, complex) | |
47 { | |
48 CAST_BINOP_ARGS (const octave_scalar&, const octave_complex&); | |
49 | |
50 Complex d = v2.complex_value (); | |
51 | |
52 if (d == 0.0) | |
53 gripe_divide_by_zero (); | |
54 | |
55 return octave_value (v1.double_value () / d); | |
56 } | |
57 | |
58 DEFBINOP_FN (pow, scalar, complex, xpow) | |
59 | |
60 DEFBINOP (ldiv, scalar, complex) | |
61 { | |
62 CAST_BINOP_ARGS (const octave_scalar&, const octave_complex&); | |
63 | |
64 double d = v1.double_value (); | |
65 | |
66 if (d == 0.0) | |
67 gripe_divide_by_zero (); | |
68 | |
69 return octave_value (v2.complex_value () / d); | |
70 } | |
71 | |
9621
3ee9029931b3
fix scalar complex-real comparisons
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
72 DEFCMPLXCMPOP_OP (lt, scalar, complex, <) |
3ee9029931b3
fix scalar complex-real comparisons
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
73 DEFCMPLXCMPOP_OP (le, scalar, complex, <=) |
3ee9029931b3
fix scalar complex-real comparisons
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
74 DEFCMPLXCMPOP_OP (eq, scalar, complex, ==) |
3ee9029931b3
fix scalar complex-real comparisons
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
75 DEFCMPLXCMPOP_OP (ge, scalar, complex, >=) |
3ee9029931b3
fix scalar complex-real comparisons
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
76 DEFCMPLXCMPOP_OP (gt, scalar, complex, >) |
3ee9029931b3
fix scalar complex-real comparisons
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
77 DEFCMPLXCMPOP_OP (ne, scalar, complex, !=) |
2928 | 78 |
79 DEFBINOP_OP (el_mul, scalar, complex, *) | |
80 | |
81 DEFBINOP (el_div, scalar, complex) | |
82 { | |
83 CAST_BINOP_ARGS (const octave_scalar&, const octave_complex&); | |
84 | |
85 Complex d = v2.complex_value (); | |
86 | |
87 if (d == 0.0) | |
88 gripe_divide_by_zero (); | |
89 | |
90 return octave_value (v1.double_value () / d); | |
91 } | |
92 | |
93 DEFBINOP_FN (el_pow, scalar, complex, xpow) | |
94 | |
95 DEFBINOP (el_ldiv, scalar, complex) | |
96 { | |
97 CAST_BINOP_ARGS (const octave_scalar&, const octave_complex&); | |
98 | |
99 double d = v1.double_value (); | |
100 | |
101 if (d == 0.0) | |
102 gripe_divide_by_zero (); | |
103 | |
104 return octave_value (v2.complex_value () / d); | |
105 } | |
106 | |
107 DEFBINOP (el_and, scalar, complex) | |
108 { | |
109 CAST_BINOP_ARGS (const octave_scalar&, const octave_complex&); | |
110 | |
111 return octave_value (v1.double_value () && (v2.complex_value () != 0.0)); | |
112 } | |
113 | |
114 DEFBINOP (el_or, scalar, complex) | |
115 { | |
116 CAST_BINOP_ARGS (const octave_scalar&, const octave_complex&); | |
117 | |
118 return octave_value (v1.double_value () || (v2.complex_value () != 0.0)); | |
119 } | |
120 | |
4915 | 121 DEFNDCATOP_FN (s_cs, scalar, complex, array, complex_array, concat) |
122 | |
2928 | 123 void |
124 install_s_cs_ops (void) | |
125 { | |
3538 | 126 INSTALL_BINOP (op_add, octave_scalar, octave_complex, add); |
127 INSTALL_BINOP (op_sub, octave_scalar, octave_complex, sub); | |
128 INSTALL_BINOP (op_mul, octave_scalar, octave_complex, mul); | |
129 INSTALL_BINOP (op_div, octave_scalar, octave_complex, div); | |
130 INSTALL_BINOP (op_pow, octave_scalar, octave_complex, pow); | |
131 INSTALL_BINOP (op_ldiv, octave_scalar, octave_complex, ldiv); | |
132 INSTALL_BINOP (op_lt, octave_scalar, octave_complex, lt); | |
133 INSTALL_BINOP (op_le, octave_scalar, octave_complex, le); | |
134 INSTALL_BINOP (op_eq, octave_scalar, octave_complex, eq); | |
135 INSTALL_BINOP (op_ge, octave_scalar, octave_complex, ge); | |
136 INSTALL_BINOP (op_gt, octave_scalar, octave_complex, gt); | |
137 INSTALL_BINOP (op_ne, octave_scalar, octave_complex, ne); | |
138 INSTALL_BINOP (op_el_mul, octave_scalar, octave_complex, el_mul); | |
139 INSTALL_BINOP (op_el_div, octave_scalar, octave_complex, el_div); | |
140 INSTALL_BINOP (op_el_pow, octave_scalar, octave_complex, el_pow); | |
141 INSTALL_BINOP (op_el_ldiv, octave_scalar, octave_complex, el_ldiv); | |
142 INSTALL_BINOP (op_el_and, octave_scalar, octave_complex, el_and); | |
143 INSTALL_BINOP (op_el_or, octave_scalar, octave_complex, el_or); | |
2928 | 144 |
4915 | 145 INSTALL_CATOP (octave_scalar, octave_complex, s_cs); |
146 | |
2928 | 147 INSTALL_ASSIGNCONV (octave_scalar, octave_complex, octave_complex_matrix); |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
148 INSTALL_ASSIGNCONV (octave_float_scalar, octave_complex, octave_float_complex_matrix); |
2928 | 149 } |