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 |
5307
|
19 Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
20 02110-1301, USA. |
2928
|
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" |
2928
|
30 #include "ov.h" |
|
31 #include "ov-bool-mat.h" |
5898
|
32 #include "ov-range.h" |
4915
|
33 #include "ov-re-mat.h" |
5898
|
34 #include "ov-re-sparse.h" |
|
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" |
2928
|
44 #include "ov-typeinfo.h" |
|
45 #include "ops.h" |
|
46 #include "xdiv.h" |
|
47 #include "xpow.h" |
|
48 |
3203
|
49 // unary bool matrix ops. |
|
50 |
4550
|
51 DEFNDUNOP_OP (not, bool_matrix, bool_array, !) |
4965
|
52 DEFNDUNOP_OP (uplus, bool_matrix, array, +) |
|
53 DEFNDUNOP_OP (uminus, bool_matrix, array, -) |
3203
|
54 |
|
55 DEFUNOP (transpose, bool_matrix) |
|
56 { |
|
57 CAST_UNOP_ARG (const octave_bool_matrix&); |
|
58 |
4673
|
59 if (v.ndims () > 2) |
|
60 { |
|
61 error ("transpose not defined for N-d objects"); |
|
62 return octave_value (); |
|
63 } |
|
64 else |
|
65 return octave_value (v.bool_matrix_value().transpose ()); |
3203
|
66 } |
|
67 |
2928
|
68 // bool matrix by bool matrix ops. |
|
69 |
4550
|
70 DEFNDBINOP_FN (eq, bool_matrix, bool_matrix, bool_array, bool_array, mx_el_eq) |
|
71 DEFNDBINOP_FN (ne, bool_matrix, bool_matrix, bool_array, bool_array, mx_el_ne) |
2928
|
72 |
4669
|
73 DEFNDBINOP_FN (el_and, bool_matrix, bool_matrix, bool_array, bool_array, |
|
74 mx_el_and) |
|
75 |
|
76 DEFNDBINOP_FN (el_or, bool_matrix, bool_matrix, bool_array, bool_array, |
|
77 mx_el_or) |
|
78 |
4964
|
79 DEFNDCATOP_FN (bm_bm, bool_matrix, bool_matrix, bool_array, bool_array, concat) |
4915
|
80 DEFNDCATOP_FN (bm_m, bool_matrix, matrix, array, array, concat) |
|
81 DEFNDCATOP_FN (m_bm, matrix, bool_matrix, array, array, concat) |
|
82 |
4686
|
83 DEFNDASSIGNOP_FN (assign, bool_matrix, bool_matrix, bool_array, assign) |
4669
|
84 |
5898
|
85 static octave_value |
|
86 oct_assignop_conv_and_assign (octave_base_value& a1, |
|
87 const octave_value_list& idx, |
|
88 const octave_base_value& a2) |
|
89 { |
|
90 octave_bool_matrix& v1 = dynamic_cast<octave_bool_matrix&> (a1); |
|
91 |
|
92 // FIXME -- perhaps add a warning for this conversion if the values |
|
93 // are not all 0 or 1? |
|
94 |
5943
|
95 boolNDArray v2 = a2.bool_array_value (true); |
5898
|
96 |
|
97 if (! error_state) |
|
98 v1.assign (idx, v2); |
|
99 |
|
100 return octave_value (); |
|
101 } |
|
102 |
2928
|
103 void |
|
104 install_bm_bm_ops (void) |
|
105 { |
3538
|
106 INSTALL_UNOP (op_not, octave_bool_matrix, not); |
4965
|
107 INSTALL_UNOP (op_uplus, octave_bool_matrix, uplus); |
|
108 INSTALL_UNOP (op_uminus, octave_bool_matrix, uminus); |
3538
|
109 INSTALL_UNOP (op_transpose, octave_bool_matrix, transpose); |
|
110 INSTALL_UNOP (op_hermitian, octave_bool_matrix, transpose); |
3203
|
111 |
3538
|
112 INSTALL_BINOP (op_eq, octave_bool_matrix, octave_bool_matrix, eq); |
|
113 INSTALL_BINOP (op_ne, octave_bool_matrix, octave_bool_matrix, ne); |
4669
|
114 |
|
115 INSTALL_BINOP (op_el_and, octave_bool_matrix, octave_bool_matrix, el_and); |
|
116 INSTALL_BINOP (op_el_or, octave_bool_matrix, octave_bool_matrix, el_or); |
|
117 |
4915
|
118 INSTALL_CATOP (octave_bool_matrix, octave_bool_matrix, bm_bm); |
|
119 INSTALL_CATOP (octave_bool_matrix, octave_matrix, bm_m); |
|
120 INSTALL_CATOP (octave_matrix, octave_bool_matrix, m_bm); |
|
121 |
4669
|
122 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_bool_matrix, assign); |
5898
|
123 |
|
124 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_matrix, conv_and_assign); |
|
125 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_char_matrix_str, conv_and_assign); |
|
126 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_char_matrix_sq_str, conv_and_assign); |
|
127 |
|
128 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_range, conv_and_assign); |
|
129 |
|
130 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_sparse_matrix, conv_and_assign); |
|
131 |
|
132 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_int8_matrix, conv_and_assign); |
|
133 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_int16_matrix, conv_and_assign); |
|
134 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_int32_matrix, conv_and_assign); |
|
135 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_int64_matrix, conv_and_assign); |
|
136 |
|
137 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_uint8_matrix, conv_and_assign); |
|
138 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_uint16_matrix, conv_and_assign); |
|
139 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_uint32_matrix, conv_and_assign); |
|
140 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_uint64_matrix, conv_and_assign); |
2928
|
141 } |
|
142 |
|
143 /* |
|
144 ;;; Local Variables: *** |
|
145 ;;; mode: C++ *** |
|
146 ;;; End: *** |
|
147 */ |