GNU Octave  4.0.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-2015 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 {
90  INSTALL_BINOP (op_el_not_and, octave_bool_matrix, octave_bool, el_not_and);
91  INSTALL_BINOP (op_el_not_or, octave_bool_matrix, octave_bool, el_not_or);
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 }
void assign(const octave_value_list &idx, const MT &rhs)
Definition: ov-base-mat.cc:216
boolNDArray mx_el_not_or(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:137
boolNDArray mx_el_not_and(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:137
ComplexNDArray concat(NDArray &ra, ComplexNDArray &rb, const Array< octave_idx_type > &ra_idx)
Definition: CNDArray.cc:664
const octave_base_value const Array< octave_idx_type > &ra_idx octave_int16_scalar & v1
#define DEFNDBINOP_FN(name, t1, t2, e1, e2, f)
Definition: ops.h:330
#define INSTALL_ASSIGNOP(op, t1, t2, f)
Definition: ops.h:55
const octave_base_value & a2
octave_value op_el_or(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1345
#define INSTALL_BINOP(op, t1, t2, f)
Definition: ops.h:46
int error_state
Definition: error.cc:101
octave_value op_el_and(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1344
#define INSTALL_CATOP(t1, t2, f)
Definition: ops.h:51
const octave_char_matrix & v2
boolMatrix mx_el_or(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:87
void assign(octave_value::assign_op, const octave_value &)
Definition: oct-lvalue.cc:33
#define DEFNDASSIGNOP_FN(name, t1, t2, e, f)
Definition: ops.h:125
static octave_value oct_assignop_conv_and_assign(octave_base_value &a1, const octave_value_list &idx, const octave_base_value &a2)
Definition: op-bm-b.cc:68
boolMatrix mx_el_and(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:87
std::list< octave_value_list > idx
Definition: oct-lvalue.h:103
#define DEFNDCATOP_FN(name, t1, t2, e1, e2, f)
Definition: ops.h:364
void install_bm_b_ops(void)
Definition: op-bm-b.cc:86
virtual boolNDArray bool_array_value(bool=false) const
Definition: ov-base.cc:646
return octave_value(v1.char_array_value().concat(v2.char_array_value(), ra_idx),((a1.is_sq_string()||a2.is_sq_string())? '\'': '"'))
static bool scalar(const dim_vector &dims)
Definition: ov-struct.cc:736