Mercurial > hg > octave-nkf
annotate src/OPERATORS/op-bm-b.cc @ 8920:eb63fbe60fab
update copyright notices
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Sat, 07 Mar 2009 10:41:27 -0500 |
parents | 82be108cc558 |
children | dc6bda6f9994 |
rev | line source |
---|---|
3937 | 1 /* |
2 | |
8920 | 3 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 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 | |
4964 | 55 DEFNDCATOP_FN (bm_b, bool_matrix, bool, bool_array, bool_array, concat) |
4915 | 56 DEFNDCATOP_FN (bm_s, bool_matrix, scalar, array, array, concat) |
57 DEFNDCATOP_FN (m_b, matrix, bool, array, array, concat) | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
58 DEFNDCATOP_FN (bm_f, bool_matrix, float_scalar, float_array, float_array, concat) |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
59 DEFNDCATOP_FN (fm_b, float_matrix, bool, float_array, float_array, concat) |
4915 | 60 |
4686 | 61 DEFNDASSIGNOP_FN (assign, bool_matrix, bool, bool_array, assign) |
3937 | 62 |
5898 | 63 static octave_value |
64 oct_assignop_conv_and_assign (octave_base_value& a1, | |
65 const octave_value_list& idx, | |
66 const octave_base_value& a2) | |
67 { | |
68 octave_bool_matrix& v1 = dynamic_cast<octave_bool_matrix&> (a1); | |
69 | |
70 // FIXME -- perhaps add a warning for this conversion if the values | |
71 // are not all 0 or 1? | |
72 | |
5943 | 73 boolNDArray v2 = a2.bool_array_value (true); |
5898 | 74 |
75 if (! error_state) | |
76 v1.assign (idx, v2); | |
77 | |
78 return octave_value (); | |
79 } | |
80 | |
3937 | 81 void |
82 install_bm_b_ops (void) | |
83 { | |
4669 | 84 INSTALL_BINOP (op_el_and, octave_bool_matrix, octave_bool, el_and); |
85 INSTALL_BINOP (op_el_or, octave_bool_matrix, octave_bool, el_or); | |
86 | |
4915 | 87 INSTALL_CATOP (octave_bool_matrix, octave_bool, bm_b); |
88 INSTALL_CATOP (octave_bool_matrix, octave_scalar, bm_s); | |
89 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
|
90 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
|
91 INSTALL_CATOP (octave_float_matrix, octave_bool, fm_b); |
4915 | 92 |
3937 | 93 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_bool, assign); |
5898 | 94 |
95 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_scalar, conv_and_assign); | |
96 | |
97 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_int8_scalar, conv_and_assign); | |
98 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_int16_scalar, conv_and_assign); | |
99 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_int32_scalar, conv_and_assign); | |
100 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_int64_scalar, conv_and_assign); | |
101 | |
102 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_uint8_scalar, conv_and_assign); | |
103 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_uint16_scalar, conv_and_assign); | |
104 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_uint32_scalar, conv_and_assign); | |
105 INSTALL_ASSIGNOP (op_asn_eq, octave_bool_matrix, octave_uint64_scalar, conv_and_assign); | |
3937 | 106 } |
107 | |
108 /* | |
109 ;;; Local Variables: *** | |
110 ;;; mode: C++ *** | |
111 ;;; End: *** | |
112 */ |