Mercurial > hg > octave-lyh
annotate libinterp/operators/op-b-bm.cc @ 17535:c12c688a35ed default tip lyh
Fix warnings
author | LYH <lyh.kernel@gmail.com> |
---|---|
date | Fri, 27 Sep 2013 17:43:27 +0800 |
parents | 2fc554ffbc28 |
children |
rev | line source |
---|---|
4669 | 1 /* |
2 | |
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
3 Copyright (C) 2003-2012 John W. Eaton |
4669 | 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 | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
4669 | 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 | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
4669 | 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" | |
4915 | 32 #include "ov-scalar.h" |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
33 #include "ov-float.h" |
4915 | 34 #include "ov-re-mat.h" |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
35 #include "ov-flt-re-mat.h" |
4669 | 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 | |
8982
dc6bda6f9994
implement compound logical ops
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
46 DEFNDBINOP_FN (el_and_not, bool, bool_matrix, bool, bool_array, mx_el_and_not) |
dc6bda6f9994
implement compound logical ops
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
47 DEFNDBINOP_FN (el_or_not, bool, bool_matrix, bool, bool_array, mx_el_or_not) |
dc6bda6f9994
implement compound logical ops
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
48 |
4964 | 49 DEFNDCATOP_FN (b_bm, bool, bool_matrix, bool_array, bool_array, concat) |
4915 | 50 DEFNDCATOP_FN (b_m, bool, matrix, array, array, concat) |
51 DEFNDCATOP_FN (s_bm, scalar, bool_matrix, array, array, concat) | |
52 | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
53 DEFNDCATOP_FN (b_fm, bool, float_matrix, float_array, float_array, concat) |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
54 DEFNDCATOP_FN (f_bm, float_scalar, bool_matrix, float_array, float_array, concat) |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
55 |
4964 | 56 DEFCONV (bool_matrix_conv, bool, bool_matrix) |
57 { | |
58 CAST_CONV_ARG (const octave_bool&); | |
59 | |
60 return new octave_bool_matrix (v.bool_matrix_value ()); | |
61 } | |
62 | |
4669 | 63 void |
64 install_b_bm_ops (void) | |
65 { | |
66 INSTALL_BINOP (op_el_and, octave_bool, octave_bool_matrix, el_and); | |
67 INSTALL_BINOP (op_el_or, octave_bool, octave_bool_matrix, el_or); | |
8993
6769599e3458
add missing binops installs
Jaroslav Hajek <highegg@gmail.com>
parents:
8982
diff
changeset
|
68 INSTALL_BINOP (op_el_and_not, octave_bool, octave_bool_matrix, el_and_not); |
6769599e3458
add missing binops installs
Jaroslav Hajek <highegg@gmail.com>
parents:
8982
diff
changeset
|
69 INSTALL_BINOP (op_el_or_not, octave_bool, octave_bool_matrix, el_or_not); |
4915 | 70 |
71 INSTALL_CATOP (octave_bool, octave_bool_matrix, b_bm); | |
72 INSTALL_CATOP (octave_bool, octave_matrix, b_m); | |
73 INSTALL_CATOP (octave_scalar, octave_bool_matrix, s_bm); | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
74 INSTALL_CATOP (octave_bool, octave_float_matrix, b_fm); |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
75 INSTALL_CATOP (octave_float_scalar, octave_bool_matrix, f_bm); |
4964 | 76 |
77 INSTALL_ASSIGNCONV (octave_bool, octave_bool_matrix, octave_bool_matrix); | |
78 | |
79 INSTALL_WIDENOP (octave_bool, octave_bool_matrix, bool_matrix_conv); | |
4669 | 80 } |