GNU Octave  3.8.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
op-bm-b.cc
Go to the documentation of this file.
1 /*
2 
3 Copyright (C) 2001-2013 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 3 of the License, or (at your
10 option) any 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, see
19 <http://www.gnu.org/licenses/>.
20 
21 */
22 
23 #ifdef HAVE_CONFIG_H
24 #include <config.h>
25 #endif
26 
27 #include "gripes.h"
28 #include "oct-obj.h"
29 #include "ov.h"
30 #include "ov-bool.h"
31 #include "ov-bool-mat.h"
32 #include "ov-scalar.h"
33 #include "ov-float.h"
34 #include "ov-re-mat.h"
35 #include "ov-flt-re-mat.h"
36 #include "ov-str-mat.h"
37 #include "ov-int8.h"
38 #include "ov-int16.h"
39 #include "ov-int32.h"
40 #include "ov-int64.h"
41 #include "ov-uint8.h"
42 #include "ov-uint16.h"
43 #include "ov-uint32.h"
44 #include "ov-uint64.h"
45 #include "ov-typeinfo.h"
46 #include "ops.h"
47 #include "xdiv.h"
48 #include "xpow.h"
49 
50 // bool matrix by bool ops.
51 
52 DEFNDBINOP_FN (el_and, bool_matrix, bool, bool_array, bool, mx_el_and)
53 DEFNDBINOP_FN (el_or, bool_matrix, bool, bool_array, bool, mx_el_or)
54 
55 DEFNDBINOP_FN (el_not_and, bool_matrix, bool, bool_array, bool, mx_el_not_and)
56 DEFNDBINOP_FN (el_not_or, bool_matrix, bool, bool_array, bool, mx_el_not_or)
57 
58 DEFNDCATOP_FN (bm_b, bool_matrix, bool, bool_array, bool_array, concat)
59 DEFNDCATOP_FN (bm_s, bool_matrix, scalar, array, array, concat)
60 DEFNDCATOP_FN (m_b, matrix, bool, array, array, concat)
61 DEFNDCATOP_FN (bm_f, bool_matrix, float_scalar, float_array, float_array,
63 DEFNDCATOP_FN (fm_b, float_matrix, bool, float_array, float_array, concat)
64 
65 DEFNDASSIGNOP_FN (assign, bool_matrix, bool, bool_array, assign)
66 
67 static octave_value
69  const octave_value_list& idx,
70  const octave_base_value& a2)
71 {
72  octave_bool_matrix& v1 = dynamic_cast<octave_bool_matrix&> (a1);
73 
74  // FIXME: perhaps add a warning for this conversion
75  // if the values are not all 0 or 1?
76 
77  boolNDArray v2 = a2.bool_array_value (true);
78 
79  if (! error_state)
80  v1.assign (idx, v2);
81 
82  return octave_value ();
83 }
84 
85 void
87 {
92 
98 
100 
102  conv_and_assign);
103 
104  INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_int8_scalar,
105  conv_and_assign);
106  INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_int16_scalar,
107  conv_and_assign);
108  INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_int32_scalar,
109  conv_and_assign);
110  INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_int64_scalar,
111  conv_and_assign);
112 
113  INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_uint8_scalar,
114  conv_and_assign);
115  INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_uint16_scalar,
116  conv_and_assign);
117  INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_uint32_scalar,
118  conv_and_assign);
119  INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_uint64_scalar,
120  conv_and_assign);
121 }