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-b-bm.cc
Go to the documentation of this file.
1 /*
2 
3 Copyright (C) 2003-2013 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 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-typeinfo.h"
37 #include "ops.h"
38 #include "xdiv.h"
39 #include "xpow.h"
40 
41 // bool matrix by bool ops.
42 
43 DEFNDBINOP_FN (el_and, bool, bool_matrix, bool, bool_array, mx_el_and)
44 DEFNDBINOP_FN (el_or, bool, bool_matrix, bool, bool_array, mx_el_or)
45 
46 DEFNDBINOP_FN (el_and_not, bool, bool_matrix, bool, bool_array, mx_el_and_not)
47 DEFNDBINOP_FN (el_or_not, bool, bool_matrix, bool, bool_array, mx_el_or_not)
48 
49 DEFNDCATOP_FN (b_bm, bool, bool_matrix, bool_array, bool_array, concat)
50 DEFNDCATOP_FN (b_m, bool, matrix, array, array, concat)
51 DEFNDCATOP_FN (s_bm, scalar, bool_matrix, array, array, concat)
52 
53 DEFNDCATOP_FN (b_fm, bool, float_matrix, float_array, float_array, concat)
54 DEFNDCATOP_FN (f_bm, float_scalar, bool_matrix, float_array, float_array,
56 
57 DEFCONV (bool_matrix_conv, bool, bool_matrix)
58 {
59  CAST_CONV_ARG (const octave_bool&);
60 
61  return new octave_bool_matrix (v.bool_matrix_value ());
62 }
63 
64 void
66 {
71 
77 
79 
80  INSTALL_WIDENOP (octave_bool, octave_bool_matrix, bool_matrix_conv);
81 }