GNU Octave 7.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-2022 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
44OCTAVE_NAMESPACE_BEGIN
45
46// bool matrix by bool ops.
47
48DEFNDBINOP_FN (el_and, bool, bool_matrix, bool, bool_array, mx_el_and)
49DEFNDBINOP_FN (el_or, bool, bool_matrix, bool, bool_array, mx_el_or)
50
51DEFNDBINOP_FN (el_and_not, bool, bool_matrix, bool, bool_array, mx_el_and_not)
52DEFNDBINOP_FN (el_or_not, bool, bool_matrix, bool, bool_array, mx_el_or_not)
53
54DEFNDCATOP_FN (b_bm, bool, bool_matrix, bool_array, bool_array, concat)
55DEFNDCATOP_FN (b_m, bool, matrix, array, array, concat)
56DEFNDCATOP_FN (s_bm, scalar, bool_matrix, array, array, concat)
57
58DEFNDCATOP_FN (b_fm, bool, float_matrix, float_array, float_array, concat)
59DEFNDCATOP_FN (f_bm, float_scalar, bool_matrix, float_array, float_array,
61
62DEFCONV (bool_matrix_conv, bool, bool_matrix)
63{
64 const octave_bool& v = dynamic_cast<const octave_bool&> (a);
65
66 return new octave_bool_matrix (v.bool_matrix_value ());
67}
68
69void
70install_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
88OCTAVE_NAMESPACE_END
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
boolMatrix bool_matrix_value(bool=false) const
Definition: ov-bool.h:206
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:299
#define DEFCONV(name, a_dummy, b_dummy)
Definition: ops.h:170
#define INSTALL_ASSIGNCONV_TI(ti, t1, t2, tr)
Definition: ops.h:71
#define INSTALL_BINOP_TI(ti, op, t1, t2, f)
Definition: ops.h:53
#define DEFNDCATOP_FN(name, t1, t2, e1, e2, f)
Definition: ops.h:347
#define INSTALL_WIDENOP_TI(ti, t1, t2, f)
Definition: ops.h:75
#define INSTALL_CATOP_TI(ti, t1, t2, f)
Definition: ops.h:58
static bool scalar(const dim_vector &dims)
Definition: ov-struct.cc:679
octave_value op_el_or(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1885
octave_value op_el_and(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1884