GNU Octave  9.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
op-b-bm.cc
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 //
3 // Copyright (C) 2003-2024 The Octave Project Developers
4 //
5 // See the file COPYRIGHT.md in the top-level directory of this
6 // distribution or <https://octave.org/copyright/>.
7 //
8 // This file is part of Octave.
9 //
10 // Octave is free software: you can redistribute it and/or modify it
11 // under the terms of the GNU General Public License as published by
12 // the Free Software Foundation, either version 3 of the License, or
13 // (at your option) any later version.
14 //
15 // Octave is distributed in the hope that it will be useful, but
16 // WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 // GNU General Public License for more details.
19 //
20 // You should have received a copy of the GNU General Public License
21 // along with Octave; see the file COPYING. If not, see
22 // <https://www.gnu.org/licenses/>.
23 //
24 ////////////////////////////////////////////////////////////////////////
25 
26 #if defined (HAVE_CONFIG_H)
27 # include "config.h"
28 #endif
29 
30 #include "errwarn.h"
31 #include "ovl.h"
32 #include "ov.h"
33 #include "ov-bool.h"
34 #include "ov-bool-mat.h"
35 #include "ov-scalar.h"
36 #include "ov-float.h"
37 #include "ov-re-mat.h"
38 #include "ov-flt-re-mat.h"
39 #include "ov-typeinfo.h"
40 #include "ops.h"
41 #include "xdiv.h"
42 #include "xpow.h"
43 
45 
46 // bool matrix by bool ops.
47 
48 DEFNDBINOP_FN (el_and, bool, bool_matrix, bool, bool_array, mx_el_and)
49 DEFNDBINOP_FN (el_or, bool, bool_matrix, bool, bool_array, mx_el_or)
50 
51 DEFNDBINOP_FN (el_and_not, bool, bool_matrix, bool, bool_array, mx_el_and_not)
52 DEFNDBINOP_FN (el_or_not, bool, bool_matrix, bool, bool_array, mx_el_or_not)
53 
54 DEFNDCATOP_FN (b_bm, bool, bool_matrix, bool_array, bool_array, concat)
55 DEFNDCATOP_FN (b_m, bool, matrix, array, array, concat)
56 DEFNDCATOP_FN (s_bm, scalar, bool_matrix, array, array, concat)
57 
58 DEFNDCATOP_FN (b_fm, bool, float_matrix, float_array, float_array, concat)
59 DEFNDCATOP_FN (f_bm, float_scalar, bool_matrix, float_array, float_array,
60  concat)
61 
62 DEFCONV (bool_matrix_conv, bool, bool_matrix)
63 {
64  OCTAVE_CAST_BASE_VALUE (const octave_bool&, v, a);
65 
66  return new octave_bool_matrix (v.bool_matrix_value ());
67 }
68 
69 void
70 install_b_bm_ops (octave::type_info& ti)
71 {
74  INSTALL_BINOP_TI (ti, op_el_and_not, octave_bool, octave_bool_matrix, el_and_not);
75  INSTALL_BINOP_TI (ti, op_el_or_not, octave_bool, octave_bool_matrix, el_or_not);
76 
82 
84 
85  INSTALL_WIDENOP_TI (ti, octave_bool, octave_bool_matrix, bool_matrix_conv);
86 }
87 
88 OCTAVE_END_NAMESPACE(octave)
ComplexNDArray concat(NDArray &ra, ComplexNDArray &rb, const Array< octave_idx_type > &ra_idx)
Definition: CNDArray.cc:418
boolMatrix mx_el_or(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:88
boolMatrix mx_el_and(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:88
boolNDArray mx_el_or_not(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:122
boolNDArray mx_el_and_not(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:122
OCTAVE_BEGIN_NAMESPACE(octave) static octave_value daspk_fcn
void install_b_bm_ops(octave::type_info &ti)
Definition: op-b-bm.cc:70
#define DEFNDBINOP_FN(name, t1, t2, e1, e2, f)
Definition: ops.h:316
#define DEFCONV(name, a_dummy, b_dummy)
Definition: ops.h:187
#define INSTALL_ASSIGNCONV_TI(ti, t1, t2, tr)
Definition: ops.h:88
#define OCTAVE_CAST_BASE_VALUE(T, T_VAL, BASE_VAL)
Definition: ops.h:52
#define INSTALL_BINOP_TI(ti, op, t1, t2, f)
Definition: ops.h:70
#define DEFNDCATOP_FN(name, t1, t2, e1, e2, f)
Definition: ops.h:364
#define INSTALL_WIDENOP_TI(ti, t1, t2, f)
Definition: ops.h:92
#define INSTALL_CATOP_TI(ti, t1, t2, f)
Definition: ops.h:75
octave_value op_el_or(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1683
octave_value op_el_and(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1682