Mercurial > hg > octave-lyh
annotate src/OPERATORS/op-sbm-bm.cc @ 8961:6b87f2f34fdd
graphics.cc: Fix default "papersize" property value.
author | Ben Abbott <bpabbott@mac.com> |
---|---|
date | Thu, 12 Mar 2009 23:20:33 +0800 |
parents | eb63fbe60fab |
children | fb6b6fcafa62 |
rev | line source |
---|---|
5164 | 1 /* |
2 | |
8920 | 3 Copyright (C) 2004, 2005, 2007, 2008 David Bateman |
7016 | 4 Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Andy Adler |
5 | |
6 This file is part of Octave. | |
5164 | 7 |
8 Octave is free software; you can redistribute it and/or modify it | |
9 under the terms of the GNU General Public License as published by the | |
7016 | 10 Free Software Foundation; either version 3 of the License, or (at your |
11 option) any later version. | |
5164 | 12 |
13 Octave is distributed in the hope that it will be useful, but WITHOUT | |
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
16 for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
7016 | 19 along with Octave; see the file COPYING. If not, see |
20 <http://www.gnu.org/licenses/>. | |
5164 | 21 |
22 */ | |
23 | |
24 #ifdef HAVE_CONFIG_H | |
25 #include <config.h> | |
26 #endif | |
27 | |
28 #include "gripes.h" | |
29 #include "oct-obj.h" | |
30 #include "ov.h" | |
31 #include "ov-typeinfo.h" | |
32 #include "ov-bool-mat.h" | |
33 #include "boolMatrix.h" | |
34 #include "ov-scalar.h" | |
35 #include "ops.h" | |
36 | |
37 #include "ov-re-sparse.h" | |
7503
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
38 #include "ov-bool-sparse.h" |
5164 | 39 #include "smx-bm-sbm.h" |
40 #include "smx-sbm-bm.h" | |
41 | |
42 // sparse bool matrix by bool matrix ops. | |
43 | |
44 DEFBINOP_FN (eq, sparse_bool_matrix, bool_matrix, mx_el_eq) | |
45 DEFBINOP_FN (ne, sparse_bool_matrix, bool_matrix, mx_el_ne) | |
46 | |
47 DEFBINOP_FN (el_and, sparse_bool_matrix, bool_matrix, mx_el_and) | |
48 DEFBINOP_FN (el_or, sparse_bool_matrix, bool_matrix, mx_el_or) | |
49 | |
50 DEFCATOP (sbm_bm, sparse_bool_matrix, bool_matrix) | |
51 { | |
52 CAST_BINOP_ARGS (octave_sparse_bool_matrix&, const octave_bool_matrix&); | |
53 | |
54 SparseBoolMatrix tmp (v2.bool_matrix_value ()); | |
55 return octave_value (v1.sparse_bool_matrix_value (). concat (tmp, ra_idx)); | |
56 } | |
57 | |
58 DEFCATOP (sbm_m, sparse_bool_matrix, matrix) | |
59 { | |
60 CAST_BINOP_ARGS (octave_sparse_bool_matrix&, const octave_matrix&); | |
61 | |
62 SparseMatrix tmp (v2.matrix_value ()); | |
63 return octave_value (v1.sparse_matrix_value (). concat (tmp, ra_idx)); | |
64 } | |
65 | |
66 DEFCATOP (sm_bm, sparse_matrix, bool_matrix) | |
67 { | |
68 CAST_BINOP_ARGS (octave_sparse_matrix&, const octave_bool_matrix&); | |
69 | |
70 SparseMatrix tmp (v2.matrix_value ()); | |
71 return octave_value (v1.sparse_matrix_value (). concat (tmp, ra_idx)); | |
72 } | |
73 | |
74 DEFASSIGNOP (assign, sparse_bool_matrix, bool_matrix) | |
75 { | |
76 CAST_BINOP_ARGS (octave_sparse_bool_matrix&, const octave_bool_matrix&); | |
77 | |
78 v1.assign (idx, SparseBoolMatrix (v2.bool_matrix_value ())); | |
79 return octave_value (); | |
80 } | |
81 | |
82 void | |
83 install_sbm_bm_ops (void) | |
84 { | |
85 INSTALL_BINOP (op_eq, octave_sparse_bool_matrix, octave_bool_matrix, eq); | |
86 INSTALL_BINOP (op_ne, octave_sparse_bool_matrix, octave_bool_matrix, ne); | |
87 | |
88 INSTALL_BINOP (op_el_and, octave_sparse_bool_matrix, octave_bool_matrix, | |
89 el_and); | |
90 INSTALL_BINOP (op_el_or, octave_sparse_bool_matrix, octave_bool_matrix, | |
91 el_or); | |
92 | |
93 INSTALL_CATOP (octave_sparse_bool_matrix, octave_bool_matrix, sbm_bm); | |
94 INSTALL_CATOP (octave_sparse_matrix, octave_bool_matrix, sm_bm); | |
95 INSTALL_CATOP (octave_sparse_bool_matrix, octave_matrix, sbm_m); | |
96 | |
97 INSTALL_ASSIGNOP (op_asn_eq, octave_sparse_bool_matrix, | |
98 octave_bool_matrix, assign); | |
99 } | |
100 | |
101 /* | |
102 ;;; Local Variables: *** | |
103 ;;; mode: C++ *** | |
104 ;;; End: *** | |
105 */ |