3937
|
1 /* |
|
2 |
|
3 Copyright (C) 2001 Cai Jianming |
|
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 |
5307
|
19 Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
20 02110-1301, USA. |
3937
|
21 |
|
22 */ |
|
23 |
|
24 #ifdef HAVE_CONFIG_H |
|
25 #include <config.h> |
|
26 #endif |
|
27 |
|
28 #include "gripes.h" |
4055
|
29 #include "oct-obj.h" |
3937
|
30 #include "ov.h" |
|
31 #include "ov-bool.h" |
|
32 #include "ov-bool-mat.h" |
4915
|
33 #include "ov-scalar.h" |
|
34 #include "ov-re-mat.h" |
5898
|
35 #include "ov-str-mat.h" |
|
36 #include "ov-int8.h" |
|
37 #include "ov-int16.h" |
|
38 #include "ov-int32.h" |
|
39 #include "ov-int64.h" |
|
40 #include "ov-uint8.h" |
|
41 #include "ov-uint16.h" |
|
42 #include "ov-uint32.h" |
|
43 #include "ov-uint64.h" |
3937
|
44 #include "ov-typeinfo.h" |
|
45 #include "ops.h" |
|
46 #include "xdiv.h" |
|
47 #include "xpow.h" |
|
48 |
|
49 // bool matrix by bool ops. |
|
50 |
4669
|
51 DEFNDBINOP_FN (el_and, bool_matrix, bool, bool_array, bool, mx_el_and) |
|
52 DEFNDBINOP_FN (el_or, bool_matrix, bool, bool_array, bool, mx_el_or) |
|
53 |
4964
|
54 DEFNDCATOP_FN (bm_b, bool_matrix, bool, bool_array, bool_array, concat) |
4915
|
55 DEFNDCATOP_FN (bm_s, bool_matrix, scalar, array, array, concat) |
|
56 DEFNDCATOP_FN (m_b, matrix, bool, array, array, concat) |
|
57 |
4686
|
58 DEFNDASSIGNOP_FN (assign, bool_matrix, bool, bool_array, assign) |
3937
|
59 |
5898
|
60 static octave_value |
|
61 oct_assignop_conv_and_assign (octave_base_value& a1, |
|
62 const octave_value_list& idx, |
|
63 const octave_base_value& a2) |
|
64 { |
|
65 octave_bool_matrix& v1 = dynamic_cast<octave_bool_matrix&> (a1); |
|
66 |
|
67 // FIXME -- perhaps add a warning for this conversion if the values |
|
68 // are not all 0 or 1? |
|
69 |
5943
|
70 boolNDArray v2 = a2.bool_array_value (true); |
5898
|
71 |
|
72 if (! error_state) |
|
73 v1.assign (idx, v2); |
|
74 |
|
75 return octave_value (); |
|
76 } |
|
77 |
3937
|
78 void |
|
79 install_bm_b_ops (void) |
|
80 { |
4669
|
81 INSTALL_BINOP (op_el_and, octave_bool_matrix, octave_bool, el_and); |
|
82 INSTALL_BINOP (op_el_or, octave_bool_matrix, octave_bool, el_or); |
|
83 |
4915
|
84 INSTALL_CATOP (octave_bool_matrix, octave_bool, bm_b); |
|
85 INSTALL_CATOP (octave_bool_matrix, octave_scalar, bm_s); |
|
86 INSTALL_CATOP (octave_matrix, octave_bool, m_b); |
|
87 |
3937
|
88 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_bool, assign); |
5898
|
89 |
|
90 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_scalar, conv_and_assign); |
|
91 |
|
92 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_int8_scalar, conv_and_assign); |
|
93 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_int16_scalar, conv_and_assign); |
|
94 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_int32_scalar, conv_and_assign); |
|
95 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_int64_scalar, conv_and_assign); |
|
96 |
|
97 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_uint8_scalar, conv_and_assign); |
|
98 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_uint16_scalar, conv_and_assign); |
|
99 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_uint32_scalar, conv_and_assign); |
|
100 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_uint64_scalar, conv_and_assign); |
3937
|
101 } |
|
102 |
|
103 /* |
|
104 ;;; Local Variables: *** |
|
105 ;;; mode: C++ *** |
|
106 ;;; End: *** |
|
107 */ |