Mercurial > hg > octave-nkf
annotate libinterp/operators/op-bm-b.cc @ 19898:4197fc428c7d
maint: Update copyright notices for 2015.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Wed, 11 Feb 2015 14:19:08 -0500 |
parents | 175b392e91fe |
children | f90c8372b7ba |
rev | line source |
---|---|
3937 | 1 /* |
2 | |
19898
4197fc428c7d
maint: Update copyright notices for 2015.
John W. Eaton <jwe@octave.org>
parents:
17787
diff
changeset
|
3 Copyright (C) 2001-2015 Cai Jianming |
3937 | 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. | |
3937 | 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/>. | |
3937 | 20 |
21 */ | |
22 | |
23 #ifdef HAVE_CONFIG_H | |
24 #include <config.h> | |
25 #endif | |
26 | |
27 #include "gripes.h" | |
4055 | 28 #include "oct-obj.h" |
3937 | 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" |
5898 | 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" | |
3937 | 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 | |
4669 | 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 | |
8982
dc6bda6f9994
implement compound logical ops
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
55 DEFNDBINOP_FN (el_not_and, bool_matrix, bool, bool_array, bool, mx_el_not_and) |
dc6bda6f9994
implement compound logical ops
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
56 DEFNDBINOP_FN (el_not_or, bool_matrix, bool, bool_array, bool, mx_el_not_or) |
dc6bda6f9994
implement compound logical ops
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
57 |
4964 | 58 DEFNDCATOP_FN (bm_b, bool_matrix, bool, bool_array, bool_array, concat) |
4915 | 59 DEFNDCATOP_FN (bm_s, bool_matrix, scalar, array, array, concat) |
60 DEFNDCATOP_FN (m_b, matrix, bool, array, array, concat) | |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
61 DEFNDCATOP_FN (bm_f, bool_matrix, float_scalar, float_array, float_array, |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
62 concat) |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
63 DEFNDCATOP_FN (fm_b, float_matrix, bool, float_array, float_array, concat) |
4915 | 64 |
4686 | 65 DEFNDASSIGNOP_FN (assign, bool_matrix, bool, bool_array, assign) |
3937 | 66 |
5898 | 67 static octave_value |
68 oct_assignop_conv_and_assign (octave_base_value& a1, | |
9931
fb6b6fcafa62
untabify files in src/OPERATORS directory
John W. Eaton <jwe@octave.org>
parents:
8993
diff
changeset
|
69 const octave_value_list& idx, |
fb6b6fcafa62
untabify files in src/OPERATORS directory
John W. Eaton <jwe@octave.org>
parents:
8993
diff
changeset
|
70 const octave_base_value& a2) |
5898 | 71 { |
72 octave_bool_matrix& v1 = dynamic_cast<octave_bool_matrix&> (a1); | |
73 | |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
74 // FIXME: perhaps add a warning for this conversion |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
75 // if the values are not all 0 or 1? |
5898 | 76 |
5943 | 77 boolNDArray v2 = a2.bool_array_value (true); |
5898 | 78 |
79 if (! error_state) | |
80 v1.assign (idx, v2); | |
81 | |
82 return octave_value (); | |
83 } | |
84 | |
3937 | 85 void |
86 install_bm_b_ops (void) | |
87 { | |
4669 | 88 INSTALL_BINOP (op_el_and, octave_bool_matrix, octave_bool, el_and); |
89 INSTALL_BINOP (op_el_or, octave_bool_matrix, octave_bool, el_or); | |
8993
6769599e3458
add missing binops installs
Jaroslav Hajek <highegg@gmail.com>
parents:
8982
diff
changeset
|
90 INSTALL_BINOP (op_el_not_and, octave_bool_matrix, octave_bool, el_not_and); |
6769599e3458
add missing binops installs
Jaroslav Hajek <highegg@gmail.com>
parents:
8982
diff
changeset
|
91 INSTALL_BINOP (op_el_not_or, octave_bool_matrix, octave_bool, el_not_or); |
4669 | 92 |
4915 | 93 INSTALL_CATOP (octave_bool_matrix, octave_bool, bm_b); |
94 INSTALL_CATOP (octave_bool_matrix, octave_scalar, bm_s); | |
95 INSTALL_CATOP (octave_matrix, octave_bool, m_b); | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
96 INSTALL_CATOP (octave_bool_matrix, octave_float_scalar, bm_f); |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
97 INSTALL_CATOP (octave_float_matrix, octave_bool, fm_b); |
4915 | 98 |
3937 | 99 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_bool, assign); |
5898 | 100 |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
101 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_scalar, |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
102 conv_and_assign); |
5898 | 103 |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
104 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_int8_scalar, |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
105 conv_and_assign); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
106 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_int16_scalar, |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
107 conv_and_assign); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
108 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_int32_scalar, |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
109 conv_and_assign); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
110 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_int64_scalar, |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
111 conv_and_assign); |
5898 | 112 |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
113 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_uint8_scalar, |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
114 conv_and_assign); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
115 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_uint16_scalar, |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
116 conv_and_assign); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
117 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_uint32_scalar, |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
118 conv_and_assign); |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
119 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_uint64_scalar, |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
120 conv_and_assign); |
3937 | 121 } |