Mercurial > hg > octave-lyh
annotate src/ov.h @ 10160:cd96d29c5efa
remove Emacs local-variable settings from source files in src directory
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Wed, 20 Jan 2010 20:39:26 -0500 |
parents | 84b0725f4b09 |
children | ba373aea03d9 |
rev | line source |
---|---|
2376 | 1 /* |
2 | |
7017 | 3 Copyright (C) 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, |
8920 | 4 2006, 2007, 2008, 2009 John W. Eaton |
2376 | 5 |
6 This file is part of Octave. | |
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. | |
2376 | 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/>. | |
2376 | 21 |
22 */ | |
23 | |
24 #if !defined (octave_value_h) | |
25 #define octave_value_h 1 | |
26 | |
27 #include <cstdlib> | |
28 | |
8950
d865363208d6
include <iosfwd> instead of <iostream> in header files
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
29 #include <iosfwd> |
2376 | 30 #include <string> |
4219 | 31 #include <list> |
2376 | 32 |
33 #include "Range.h" | |
5828 | 34 #include "data-conv.h" |
2376 | 35 #include "idx-vector.h" |
5828 | 36 #include "mach-info.h" |
5900 | 37 #include "mxarray.h" |
2376 | 38 #include "mx-base.h" |
2477 | 39 #include "oct-alloc.h" |
4254 | 40 #include "oct-time.h" |
2942 | 41 #include "str-vec.h" |
42 | |
8676 | 43 #include "oct-hdf5.h" |
7433 | 44 #include "oct-sort.h" |
45 | |
3351 | 46 class Cell; |
2376 | 47 class Octave_map; |
2903 | 48 class octave_stream; |
2974 | 49 class octave_function; |
4700 | 50 class octave_user_function; |
4342 | 51 class octave_fcn_handle; |
4933 | 52 class octave_fcn_inline; |
2376 | 53 class octave_value_list; |
2979 | 54 class octave_lvalue; |
2376 | 55 |
5759 | 56 #include "ov-base.h" |
2376 | 57 |
5759 | 58 // Constants. |
2376 | 59 |
2427 | 60 class octave_value; |
61 | |
2376 | 62 class |
6109 | 63 OCTINTERP_API |
2974 | 64 octave_value |
2376 | 65 { |
66 public: | |
67 | |
3203 | 68 enum unary_op |
69 { | |
6518 | 70 op_not, // not |
71 op_uplus, // uplus | |
72 op_uminus, // uminus | |
73 op_transpose, // transpose | |
74 op_hermitian, // ctranspose | |
3525 | 75 op_incr, |
76 op_decr, | |
3203 | 77 num_unary_ops, |
78 unknown_unary_op | |
79 }; | |
80 | |
2376 | 81 enum binary_op |
82 { | |
6518 | 83 op_add, // plus |
84 op_sub, // minus | |
85 op_mul, // mtimes | |
86 op_div, // mrdivide | |
87 op_pow, // mpower | |
88 op_ldiv, // mldivide | |
3525 | 89 op_lshift, |
90 op_rshift, | |
6518 | 91 op_lt, // lt |
92 op_le, // le | |
93 op_eq, // eq | |
94 op_ge, // ge | |
95 op_gt, // gt | |
96 op_ne, // ne | |
97 op_el_mul, // times | |
98 op_el_div, // rdivide | |
99 op_el_pow, // power | |
100 op_el_ldiv, // ldivide | |
101 op_el_and, // and | |
102 op_el_or, // or | |
3525 | 103 op_struct_ref, |
2376 | 104 num_binary_ops, |
105 unknown_binary_op | |
106 }; | |
107 | |
7800
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
108 enum compound_binary_op |
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
109 { |
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
110 // ** compound operations ** |
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
111 op_trans_mul, |
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
112 op_mul_trans, |
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
113 op_herm_mul, |
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
114 op_mul_herm, |
9661
afcf852256d2
optimize / and '\ for triangular matrices
Jaroslav Hajek <highegg@gmail.com>
parents:
9657
diff
changeset
|
115 op_trans_ldiv, |
afcf852256d2
optimize / and '\ for triangular matrices
Jaroslav Hajek <highegg@gmail.com>
parents:
9657
diff
changeset
|
116 op_herm_ldiv, |
8982
dc6bda6f9994
implement compound logical ops
Jaroslav Hajek <highegg@gmail.com>
parents:
8960
diff
changeset
|
117 op_el_not_and, |
dc6bda6f9994
implement compound logical ops
Jaroslav Hajek <highegg@gmail.com>
parents:
8960
diff
changeset
|
118 op_el_not_or, |
dc6bda6f9994
implement compound logical ops
Jaroslav Hajek <highegg@gmail.com>
parents:
8960
diff
changeset
|
119 op_el_and_not, |
dc6bda6f9994
implement compound logical ops
Jaroslav Hajek <highegg@gmail.com>
parents:
8960
diff
changeset
|
120 op_el_or_not, |
7800
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
121 num_compound_binary_ops, |
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
122 unknown_compound_binary_op |
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
123 }; |
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
124 |
2880 | 125 enum assign_op |
126 { | |
3525 | 127 op_asn_eq, |
128 op_add_eq, | |
129 op_sub_eq, | |
130 op_mul_eq, | |
131 op_div_eq, | |
132 op_ldiv_eq, | |
4018 | 133 op_pow_eq, |
3525 | 134 op_lshift_eq, |
135 op_rshift_eq, | |
136 op_el_mul_eq, | |
137 op_el_div_eq, | |
138 op_el_ldiv_eq, | |
4018 | 139 op_el_pow_eq, |
3525 | 140 op_el_and_eq, |
141 op_el_or_eq, | |
2880 | 142 num_assign_ops, |
143 unknown_assign_op | |
144 }; | |
145 | |
9607
1be3c73ed7b5
reuse temporary arrays in nested expressions
Jaroslav Hajek <highegg@gmail.com>
parents:
9521
diff
changeset
|
146 static assign_op binary_op_to_assign_op (binary_op); |
1be3c73ed7b5
reuse temporary arrays in nested expressions
Jaroslav Hajek <highegg@gmail.com>
parents:
9521
diff
changeset
|
147 |
3523 | 148 static std::string unary_op_as_string (unary_op); |
7336 | 149 static std::string unary_op_fcn_name (unary_op); |
3203 | 150 |
3523 | 151 static std::string binary_op_as_string (binary_op); |
7336 | 152 static std::string binary_op_fcn_name (binary_op); |
2376 | 153 |
7800
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
154 static std::string binary_op_fcn_name (compound_binary_op); |
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
155 |
3523 | 156 static std::string assign_op_as_string (assign_op); |
2880 | 157 |
3933 | 158 static octave_value empty_conv (const std::string& type, |
159 const octave_value& rhs = octave_value ()); | |
160 | |
2376 | 161 enum magic_colon { magic_colon_t }; |
162 | |
8992
d12f44a5dce3
implement fast octave_value constructor
Jaroslav Hajek <highegg@gmail.com>
parents:
8982
diff
changeset
|
163 octave_value (void) |
d12f44a5dce3
implement fast octave_value constructor
Jaroslav Hajek <highegg@gmail.com>
parents:
8982
diff
changeset
|
164 { |
d12f44a5dce3
implement fast octave_value constructor
Jaroslav Hajek <highegg@gmail.com>
parents:
8982
diff
changeset
|
165 static octave_base_value nil_rep; |
d12f44a5dce3
implement fast octave_value constructor
Jaroslav Hajek <highegg@gmail.com>
parents:
8982
diff
changeset
|
166 rep = &nil_rep; |
d12f44a5dce3
implement fast octave_value constructor
Jaroslav Hajek <highegg@gmail.com>
parents:
8982
diff
changeset
|
167 rep->count++; |
d12f44a5dce3
implement fast octave_value constructor
Jaroslav Hajek <highegg@gmail.com>
parents:
8982
diff
changeset
|
168 } |
d12f44a5dce3
implement fast octave_value constructor
Jaroslav Hajek <highegg@gmail.com>
parents:
8982
diff
changeset
|
169 |
4254 | 170 octave_value (short int i); |
171 octave_value (unsigned short int i); | |
4233 | 172 octave_value (int i); |
4254 | 173 octave_value (unsigned int i); |
174 octave_value (long int i); | |
175 octave_value (unsigned long int i); | |
4353 | 176 |
5775 | 177 // FIXME -- these are kluges. They turn into doubles |
4353 | 178 // internally, which will break for very large values. We just use |
179 // them to store things like 64-bit ino_t, etc, and hope that those | |
180 // values are never actually larger than can be represented exactly | |
181 // in a double. | |
182 | |
183 #if defined (HAVE_LONG_LONG_INT) | |
184 octave_value (long long int i); | |
185 #endif | |
4356 | 186 #if defined (HAVE_UNSIGNED_LONG_LONG_INT) |
4353 | 187 octave_value (unsigned long long int i); |
188 #endif | |
189 | |
4254 | 190 octave_value (octave_time t); |
2376 | 191 octave_value (double d); |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
192 octave_value (float d); |
9732
b4fdfee405b5
remove ArrayN<T> + fix nonhom. diag-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents:
9728
diff
changeset
|
193 octave_value (const Array<octave_value>& a, bool is_cs_list = false); |
4532 | 194 octave_value (const Cell& c, bool is_cs_list = false); |
5785 | 195 octave_value (const Matrix& m, const MatrixType& t = MatrixType()); |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
196 octave_value (const FloatMatrix& m, const MatrixType& t = MatrixType()); |
4513 | 197 octave_value (const NDArray& nda); |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
198 octave_value (const FloatNDArray& nda); |
9732
b4fdfee405b5
remove ArrayN<T> + fix nonhom. diag-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents:
9728
diff
changeset
|
199 octave_value (const Array<double>& m); |
b4fdfee405b5
remove ArrayN<T> + fix nonhom. diag-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents:
9728
diff
changeset
|
200 octave_value (const Array<float>& m); |
2376 | 201 octave_value (const DiagMatrix& d); |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
202 octave_value (const FloatDiagMatrix& d); |
3418 | 203 octave_value (const RowVector& v); |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
204 octave_value (const FloatRowVector& v); |
3418 | 205 octave_value (const ColumnVector& v); |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
206 octave_value (const FloatColumnVector& v); |
2376 | 207 octave_value (const Complex& C); |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
208 octave_value (const FloatComplex& C); |
5785 | 209 octave_value (const ComplexMatrix& m, const MatrixType& t = MatrixType()); |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
210 octave_value (const FloatComplexMatrix& m, const MatrixType& t = MatrixType()); |
4513 | 211 octave_value (const ComplexNDArray& cnda); |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
212 octave_value (const FloatComplexNDArray& cnda); |
9732
b4fdfee405b5
remove ArrayN<T> + fix nonhom. diag-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents:
9728
diff
changeset
|
213 octave_value (const Array<Complex>& m); |
b4fdfee405b5
remove ArrayN<T> + fix nonhom. diag-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents:
9728
diff
changeset
|
214 octave_value (const Array<FloatComplex>& m); |
2376 | 215 octave_value (const ComplexDiagMatrix& d); |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
216 octave_value (const FloatComplexDiagMatrix& d); |
3418 | 217 octave_value (const ComplexRowVector& v); |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
218 octave_value (const FloatComplexRowVector& v); |
3418 | 219 octave_value (const ComplexColumnVector& v); |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
220 octave_value (const FloatComplexColumnVector& v); |
8960
93f18f166aba
remove float perm matrices
Jaroslav Hajek <highegg@gmail.com>
parents:
8950
diff
changeset
|
221 octave_value (const PermMatrix& p); |
2825 | 222 octave_value (bool b); |
5785 | 223 octave_value (const boolMatrix& bm, const MatrixType& t = MatrixType()); |
4513 | 224 octave_value (const boolNDArray& bnda); |
9732
b4fdfee405b5
remove ArrayN<T> + fix nonhom. diag-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents:
9728
diff
changeset
|
225 octave_value (const Array<bool>& bnda); |
9689
34d6f005db4b
eliminate is_string argument from octave_value character array constructors
John W. Eaton <jwe@octave.org>
parents:
9685
diff
changeset
|
226 octave_value (char c, char type = '\''); |
34d6f005db4b
eliminate is_string argument from octave_value character array constructors
John W. Eaton <jwe@octave.org>
parents:
9685
diff
changeset
|
227 octave_value (const char *s, char type = '\''); |
34d6f005db4b
eliminate is_string argument from octave_value character array constructors
John W. Eaton <jwe@octave.org>
parents:
9685
diff
changeset
|
228 octave_value (const std::string& s, char type = '\''); |
34d6f005db4b
eliminate is_string argument from octave_value character array constructors
John W. Eaton <jwe@octave.org>
parents:
9685
diff
changeset
|
229 octave_value (const string_vector& s, char type = '\''); |
34d6f005db4b
eliminate is_string argument from octave_value character array constructors
John W. Eaton <jwe@octave.org>
parents:
9685
diff
changeset
|
230 octave_value (const charMatrix& chm, char type = '\''); |
34d6f005db4b
eliminate is_string argument from octave_value character array constructors
John W. Eaton <jwe@octave.org>
parents:
9685
diff
changeset
|
231 octave_value (const charNDArray& chnda, char type = '\''); |
9732
b4fdfee405b5
remove ArrayN<T> + fix nonhom. diag-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents:
9728
diff
changeset
|
232 octave_value (const Array<char>& chnda, char type = '\''); |
9689
34d6f005db4b
eliminate is_string argument from octave_value character array constructors
John W. Eaton <jwe@octave.org>
parents:
9685
diff
changeset
|
233 octave_value (const charMatrix& chm, bool is_string, |
34d6f005db4b
eliminate is_string argument from octave_value character array constructors
John W. Eaton <jwe@octave.org>
parents:
9685
diff
changeset
|
234 char type = '\'') GCC_ATTR_DEPRECATED; |
34d6f005db4b
eliminate is_string argument from octave_value character array constructors
John W. Eaton <jwe@octave.org>
parents:
9685
diff
changeset
|
235 octave_value (const charNDArray& chnda, bool is_string, |
34d6f005db4b
eliminate is_string argument from octave_value character array constructors
John W. Eaton <jwe@octave.org>
parents:
9685
diff
changeset
|
236 char type = '\'') GCC_ATTR_DEPRECATED; |
9732
b4fdfee405b5
remove ArrayN<T> + fix nonhom. diag-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents:
9728
diff
changeset
|
237 octave_value (const Array<char>& chnda, bool is_string, |
9689
34d6f005db4b
eliminate is_string argument from octave_value character array constructors
John W. Eaton <jwe@octave.org>
parents:
9685
diff
changeset
|
238 char type = '\'') GCC_ATTR_DEPRECATED; |
5785 | 239 octave_value (const SparseMatrix& m, const MatrixType& t = MatrixType ()); |
6863 | 240 octave_value (const Sparse<double>& m, const MatrixType& t = MatrixType ()); |
5164 | 241 octave_value (const SparseComplexMatrix& m, |
5785 | 242 const MatrixType& t = MatrixType ()); |
6863 | 243 octave_value (const Sparse<Complex>& m, const MatrixType& t = MatrixType ()); |
5164 | 244 octave_value (const SparseBoolMatrix& bm, |
5785 | 245 const MatrixType& t = MatrixType ()); |
7433 | 246 octave_value (const Sparse<bool>& m, const MatrixType& t = MatrixType ()); |
4901 | 247 octave_value (const octave_int8& i); |
4910 | 248 octave_value (const octave_int16& i); |
249 octave_value (const octave_int32& i); | |
250 octave_value (const octave_int64& i); | |
4901 | 251 octave_value (const octave_uint8& i); |
252 octave_value (const octave_uint16& i); | |
253 octave_value (const octave_uint32& i); | |
254 octave_value (const octave_uint64& i); | |
255 octave_value (const int8NDArray& inda); | |
9732
b4fdfee405b5
remove ArrayN<T> + fix nonhom. diag-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents:
9728
diff
changeset
|
256 octave_value (const Array<octave_int8>& inda); |
4910 | 257 octave_value (const int16NDArray& inda); |
9732
b4fdfee405b5
remove ArrayN<T> + fix nonhom. diag-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents:
9728
diff
changeset
|
258 octave_value (const Array<octave_int16>& inda); |
4910 | 259 octave_value (const int32NDArray& inda); |
9732
b4fdfee405b5
remove ArrayN<T> + fix nonhom. diag-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents:
9728
diff
changeset
|
260 octave_value (const Array<octave_int32>& inda); |
4910 | 261 octave_value (const int64NDArray& inda); |
9732
b4fdfee405b5
remove ArrayN<T> + fix nonhom. diag-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents:
9728
diff
changeset
|
262 octave_value (const Array<octave_int64>& inda); |
4901 | 263 octave_value (const uint8NDArray& inda); |
9732
b4fdfee405b5
remove ArrayN<T> + fix nonhom. diag-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents:
9728
diff
changeset
|
264 octave_value (const Array<octave_uint8>& inda); |
4901 | 265 octave_value (const uint16NDArray& inda); |
9732
b4fdfee405b5
remove ArrayN<T> + fix nonhom. diag-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents:
9728
diff
changeset
|
266 octave_value (const Array<octave_uint16>& inda); |
4901 | 267 octave_value (const uint32NDArray& inda); |
9732
b4fdfee405b5
remove ArrayN<T> + fix nonhom. diag-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents:
9728
diff
changeset
|
268 octave_value (const Array<octave_uint32>& inda); |
4901 | 269 octave_value (const uint64NDArray& inda); |
9732
b4fdfee405b5
remove ArrayN<T> + fix nonhom. diag-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents:
9728
diff
changeset
|
270 octave_value (const Array<octave_uint64>& inda); |
9351
e2344f4af0cb
autocache indices returned from find et al.
Jaroslav Hajek <highegg@gmail.com>
parents:
9329
diff
changeset
|
271 octave_value (const Array<octave_idx_type>& inda, |
e2344f4af0cb
autocache indices returned from find et al.
Jaroslav Hajek <highegg@gmail.com>
parents:
9329
diff
changeset
|
272 bool zero_based = false, bool cache_index = false); |
9725 | 273 octave_value (const Array<std::string>& cellstr); |
9479
d9716e3ee0dd
supply optimized compiled sub2ind & ind2sub
Jaroslav Hajek <highegg@gmail.com>
parents:
9351
diff
changeset
|
274 octave_value (const idx_vector& idx); |
2376 | 275 octave_value (double base, double limit, double inc); |
276 octave_value (const Range& r); | |
277 octave_value (const Octave_map& m); | |
7336 | 278 octave_value (const Octave_map& m, const std::string& id); |
3977 | 279 octave_value (const octave_value_list& m, bool is_cs_list = false); |
2376 | 280 octave_value (octave_value::magic_colon); |
281 | |
9728
70925b11ba46
again allow the obsolete syntax for cellfun
Jaroslav Hajek <highegg@gmail.com>
parents:
9725
diff
changeset
|
282 octave_value (octave_base_value *new_rep, bool borrow = false); |
70925b11ba46
again allow the obsolete syntax for cellfun
Jaroslav Hajek <highegg@gmail.com>
parents:
9725
diff
changeset
|
283 octave_value (octave_base_value *new_rep, int xcount) GCC_ATTR_DEPRECATED; |
2376 | 284 |
285 // Copy constructor. | |
286 | |
287 octave_value (const octave_value& a) | |
288 { | |
289 rep = a.rep; | |
290 rep->count++; | |
291 } | |
292 | |
3933 | 293 // This should only be called for derived types. |
294 | |
5759 | 295 octave_base_value *clone (void) const; |
3933 | 296 |
5759 | 297 octave_base_value *empty_clone (void) const |
3933 | 298 { return rep->empty_clone (); } |
299 | |
2376 | 300 // Delete the representation of this constant if the count drops to |
301 // zero. | |
302 | |
6338 | 303 ~octave_value (void) |
304 { | |
305 if (--rep->count == 0) | |
306 delete rep; | |
307 } | |
2376 | 308 |
309 void make_unique (void) | |
310 { | |
311 if (rep->count > 1) | |
312 { | |
313 --rep->count; | |
9521 | 314 rep = rep->unique_clone (); |
2376 | 315 } |
316 } | |
317 | |
8546
3d8a914c580e
improve parser indexed assigment code
Jaroslav Hajek <highegg@gmail.com>
parents:
8531
diff
changeset
|
318 // This uniquifies the value if it is referenced by more than a certain |
3d8a914c580e
improve parser indexed assigment code
Jaroslav Hajek <highegg@gmail.com>
parents:
8531
diff
changeset
|
319 // number of shallow copies. This is useful for optimizations where we |
3d8a914c580e
improve parser indexed assigment code
Jaroslav Hajek <highegg@gmail.com>
parents:
8531
diff
changeset
|
320 // know a certain copy, typically within a cell array, to be obsolete. |
3d8a914c580e
improve parser indexed assigment code
Jaroslav Hajek <highegg@gmail.com>
parents:
8531
diff
changeset
|
321 void make_unique (int obsolete_copies) |
3d8a914c580e
improve parser indexed assigment code
Jaroslav Hajek <highegg@gmail.com>
parents:
8531
diff
changeset
|
322 { |
3d8a914c580e
improve parser indexed assigment code
Jaroslav Hajek <highegg@gmail.com>
parents:
8531
diff
changeset
|
323 if (rep->count > obsolete_copies + 1) |
3d8a914c580e
improve parser indexed assigment code
Jaroslav Hajek <highegg@gmail.com>
parents:
8531
diff
changeset
|
324 { |
3d8a914c580e
improve parser indexed assigment code
Jaroslav Hajek <highegg@gmail.com>
parents:
8531
diff
changeset
|
325 --rep->count; |
9521 | 326 rep = rep->unique_clone (); |
8546
3d8a914c580e
improve parser indexed assigment code
Jaroslav Hajek <highegg@gmail.com>
parents:
8531
diff
changeset
|
327 } |
3d8a914c580e
improve parser indexed assigment code
Jaroslav Hajek <highegg@gmail.com>
parents:
8531
diff
changeset
|
328 } |
3d8a914c580e
improve parser indexed assigment code
Jaroslav Hajek <highegg@gmail.com>
parents:
8531
diff
changeset
|
329 |
2376 | 330 // Simple assignment. |
331 | |
332 octave_value& operator = (const octave_value& a) | |
333 { | |
334 if (rep != a.rep) | |
335 { | |
336 if (--rep->count == 0) | |
337 delete rep; | |
338 | |
339 rep = a.rep; | |
340 rep->count++; | |
341 } | |
342 | |
343 return *this; | |
344 } | |
345 | |
9703
9a5598cf899d
octave_value::get_count: return octave_idx_type, not int
John W. Eaton <jwe@octave.org>
parents:
9689
diff
changeset
|
346 octave_idx_type get_count (void) const { return rep->count; } |
3239 | 347 |
8345
c777f3ce02d8
smarter conversion lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
8150
diff
changeset
|
348 octave_base_value::type_conv_info numeric_conversion_function (void) const |
2376 | 349 { return rep->numeric_conversion_function (); } |
350 | |
8345
c777f3ce02d8
smarter conversion lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
8150
diff
changeset
|
351 octave_base_value::type_conv_info numeric_demotion_function (void) const |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
352 { return rep->numeric_demotion_function (); } |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
353 |
2409 | 354 void maybe_mutate (void); |
355 | |
5759 | 356 octave_value squeeze (void) const |
4532 | 357 { return rep->squeeze (); } |
358 | |
8458
d254a21e0120
reimplement full as method of octave_base_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8456
diff
changeset
|
359 // The result of full(). |
d254a21e0120
reimplement full as method of octave_base_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8456
diff
changeset
|
360 octave_value full_value (void) const |
d254a21e0120
reimplement full as method of octave_base_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8456
diff
changeset
|
361 { return rep->full_value (); } |
d254a21e0120
reimplement full as method of octave_base_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8456
diff
changeset
|
362 |
5759 | 363 octave_base_value *try_narrowing_conversion (void) |
2410 | 364 { return rep->try_narrowing_conversion (); } |
2409 | 365 |
9329
67fc970dad7d
improve indexed assignment using indexed numel
Jaroslav Hajek <highegg@gmail.com>
parents:
9151
diff
changeset
|
366 // Close to dims (), but can be overloaded for classes. |
67fc970dad7d
improve indexed assignment using indexed numel
Jaroslav Hajek <highegg@gmail.com>
parents:
9151
diff
changeset
|
367 Matrix size (void) |
67fc970dad7d
improve indexed assignment using indexed numel
Jaroslav Hajek <highegg@gmail.com>
parents:
9151
diff
changeset
|
368 { return rep->size (); } |
67fc970dad7d
improve indexed assignment using indexed numel
Jaroslav Hajek <highegg@gmail.com>
parents:
9151
diff
changeset
|
369 |
67fc970dad7d
improve indexed assignment using indexed numel
Jaroslav Hajek <highegg@gmail.com>
parents:
9151
diff
changeset
|
370 octave_idx_type numel (const octave_value_list& idx) |
67fc970dad7d
improve indexed assignment using indexed numel
Jaroslav Hajek <highegg@gmail.com>
parents:
9151
diff
changeset
|
371 { return rep->numel (idx); } |
67fc970dad7d
improve indexed assignment using indexed numel
Jaroslav Hajek <highegg@gmail.com>
parents:
9151
diff
changeset
|
372 |
4271 | 373 octave_value single_subsref (const std::string& type, |
374 const octave_value_list& idx); | |
375 | |
5759 | 376 octave_value subsref (const std::string& type, |
8551
906f976d35a8
further improve struct&cell indexing & indexed assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
8546
diff
changeset
|
377 const std::list<octave_value_list>& idx) |
3933 | 378 { return rep->subsref (type, idx); } |
379 | |
8551
906f976d35a8
further improve struct&cell indexing & indexed assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
8546
diff
changeset
|
380 octave_value subsref (const std::string& type, |
906f976d35a8
further improve struct&cell indexing & indexed assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
8546
diff
changeset
|
381 const std::list<octave_value_list>& idx, |
906f976d35a8
further improve struct&cell indexing & indexed assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
8546
diff
changeset
|
382 bool auto_add) |
906f976d35a8
further improve struct&cell indexing & indexed assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
8546
diff
changeset
|
383 { return rep->subsref (type, idx, auto_add); } |
906f976d35a8
further improve struct&cell indexing & indexed assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
8546
diff
changeset
|
384 |
5759 | 385 octave_value_list subsref (const std::string& type, |
8551
906f976d35a8
further improve struct&cell indexing & indexed assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
8546
diff
changeset
|
386 const std::list<octave_value_list>& idx, |
906f976d35a8
further improve struct&cell indexing & indexed assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
8546
diff
changeset
|
387 int nargout); |
3933 | 388 |
4247 | 389 octave_value next_subsref (const std::string& type, const |
4219 | 390 std::list<octave_value_list>& idx, |
4233 | 391 size_t skip = 1); |
3933 | 392 |
4994 | 393 octave_value_list next_subsref (int nargout, |
394 const std::string& type, const | |
395 std::list<octave_value_list>& idx, | |
396 size_t skip = 1); | |
397 | |
8551
906f976d35a8
further improve struct&cell indexing & indexed assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
8546
diff
changeset
|
398 octave_value next_subsref (bool auto_add, const std::string& type, const |
906f976d35a8
further improve struct&cell indexing & indexed assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
8546
diff
changeset
|
399 std::list<octave_value_list>& idx, |
906f976d35a8
further improve struct&cell indexing & indexed assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
8546
diff
changeset
|
400 size_t skip = 1); |
906f976d35a8
further improve struct&cell indexing & indexed assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
8546
diff
changeset
|
401 |
5759 | 402 octave_value do_index_op (const octave_value_list& idx, |
5885 | 403 bool resize_ok = false) |
3933 | 404 { return rep->do_index_op (idx, resize_ok); } |
405 | |
5759 | 406 octave_value_list |
3544 | 407 do_multi_index_op (int nargout, const octave_value_list& idx); |
2974 | 408 |
5759 | 409 octave_value subsasgn (const std::string& type, |
4219 | 410 const std::list<octave_value_list>& idx, |
3933 | 411 const octave_value& rhs); |
2376 | 412 |
4247 | 413 octave_value assign (assign_op op, const std::string& type, |
4219 | 414 const std::list<octave_value_list>& idx, |
3933 | 415 const octave_value& rhs); |
2948 | 416 |
3933 | 417 const octave_value& assign (assign_op, const octave_value& rhs); |
2948 | 418 |
5759 | 419 idx_vector index_vector (void) const |
2376 | 420 { return rep->index_vector (); } |
421 | |
422 // Size. | |
423 | |
5759 | 424 dim_vector dims (void) const |
4513 | 425 { return rep->dims (); } |
426 | |
5759 | 427 octave_idx_type rows (void) const { return rep->rows (); } |
4563 | 428 |
5759 | 429 octave_idx_type columns (void) const { return rep->columns (); } |
3195 | 430 |
5275 | 431 octave_idx_type length (void) const; |
4554 | 432 |
5759 | 433 int ndims (void) const { return rep->ndims (); } |
4563 | 434 |
5164 | 435 bool all_zero_dims (void) const { return dims().all_zero (); } |
436 | |
5759 | 437 octave_idx_type numel (void) const |
5080 | 438 { return rep->numel (); } |
4559 | 439 |
5759 | 440 octave_idx_type capacity (void) const |
5164 | 441 { return rep->capacity (); } |
442 | |
5759 | 443 size_t byte_size (void) const |
4791 | 444 { return rep->byte_size (); } |
445 | |
5759 | 446 octave_idx_type nnz (void) const { return rep->nnz (); } |
5602 | 447 |
5759 | 448 octave_idx_type nzmax (void) const { return rep->nzmax (); } |
5604 | 449 |
5900 | 450 octave_idx_type nfields (void) const { return rep->nfields (); } |
451 | |
5759 | 452 octave_value reshape (const dim_vector& dv) const |
4587 | 453 { return rep->reshape (dv); } |
4567 | 454 |
5759 | 455 octave_value permute (const Array<int>& vec, bool inv = false) const |
4593 | 456 { return rep->permute (vec, inv); } |
457 | |
458 octave_value ipermute (const Array<int>& vec) const | |
459 { return rep->permute (vec, true); } | |
460 | |
5759 | 461 octave_value resize (const dim_vector& dv, bool fill = false) const |
462 { return rep->resize (dv, fill);} | |
4915 | 463 |
5785 | 464 MatrixType matrix_type (void) const |
465 { return rep->matrix_type (); } | |
466 | |
467 MatrixType matrix_type (const MatrixType& typ) const | |
468 { return rep->matrix_type (typ); } | |
469 | |
2376 | 470 // Does this constant have a type? Both of these are provided since |
471 // it is sometimes more natural to write is_undefined() instead of | |
472 // ! is_defined(). | |
473 | |
5759 | 474 bool is_defined (void) const |
2376 | 475 { return rep->is_defined (); } |
476 | |
477 bool is_undefined (void) const | |
478 { return ! is_defined (); } | |
479 | |
4559 | 480 bool is_empty (void) const |
5759 | 481 { return rep->is_empty (); } |
4559 | 482 |
5759 | 483 bool is_cell (void) const |
3351 | 484 { return rep->is_cell (); } |
485 | |
6116 | 486 bool is_cellstr (void) const |
487 { return rep->is_cellstr (); } | |
488 | |
5759 | 489 bool is_real_scalar (void) const |
2376 | 490 { return rep->is_real_scalar (); } |
491 | |
5759 | 492 bool is_real_matrix (void) const |
2376 | 493 { return rep->is_real_matrix (); } |
494 | |
5759 | 495 bool is_real_nd_array (void) const |
4505 | 496 { return rep->is_real_nd_array (); } |
497 | |
5759 | 498 bool is_complex_scalar (void) const |
2376 | 499 { return rep->is_complex_scalar (); } |
500 | |
5759 | 501 bool is_complex_matrix (void) const |
2376 | 502 { return rep->is_complex_matrix (); } |
503 | |
5881 | 504 bool is_bool_scalar (void) const |
505 { return rep->is_bool_scalar (); } | |
506 | |
5759 | 507 bool is_bool_matrix (void) const |
4587 | 508 { return rep->is_bool_matrix (); } |
509 | |
5759 | 510 bool is_char_matrix (void) const |
2376 | 511 { return rep->is_char_matrix (); } |
512 | |
8366
8b1a2555c4e2
implement diagonal matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8346
diff
changeset
|
513 bool is_diag_matrix (void) const |
8b1a2555c4e2
implement diagonal matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8346
diff
changeset
|
514 { return rep->is_diag_matrix (); } |
8b1a2555c4e2
implement diagonal matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8346
diff
changeset
|
515 |
8371
c3f7e2549abb
make det & inv aware of diagonal & permutation matrices
Jaroslav Hajek <highegg@gmail.com>
parents:
8367
diff
changeset
|
516 bool is_perm_matrix (void) const |
c3f7e2549abb
make det & inv aware of diagonal & permutation matrices
Jaroslav Hajek <highegg@gmail.com>
parents:
8367
diff
changeset
|
517 { return rep->is_perm_matrix (); } |
c3f7e2549abb
make det & inv aware of diagonal & permutation matrices
Jaroslav Hajek <highegg@gmail.com>
parents:
8367
diff
changeset
|
518 |
5759 | 519 bool is_string (void) const |
2376 | 520 { return rep->is_string (); } |
521 | |
5759 | 522 bool is_sq_string (void) const |
5279 | 523 { return rep->is_sq_string (); } |
524 | |
5280 | 525 bool is_dq_string (void) const |
526 { return rep->is_string () && ! rep->is_sq_string (); } | |
527 | |
5759 | 528 bool is_range (void) const |
2376 | 529 { return rep->is_range (); } |
530 | |
5759 | 531 bool is_map (void) const |
2376 | 532 { return rep->is_map (); } |
533 | |
7336 | 534 bool is_object (void) const |
535 { return rep->is_object (); } | |
536 | |
5759 | 537 bool is_cs_list (void) const |
3977 | 538 { return rep->is_cs_list (); } |
539 | |
5759 | 540 bool is_list (void) const |
2880 | 541 { return rep->is_list (); } |
542 | |
5759 | 543 bool is_magic_colon (void) const |
2376 | 544 { return rep->is_magic_colon (); } |
545 | |
8150
283989f2da9b
make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents:
8017
diff
changeset
|
546 bool is_null_value (void) const |
283989f2da9b
make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents:
8017
diff
changeset
|
547 { return rep->is_null_value (); } |
283989f2da9b
make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents:
8017
diff
changeset
|
548 |
2376 | 549 // Are any or all of the elements in this constant nonzero? |
550 | |
5759 | 551 octave_value all (int dim = 0) const |
4015 | 552 { return rep->all (dim); } |
2376 | 553 |
5759 | 554 octave_value any (int dim = 0) const |
4015 | 555 { return rep->any (dim); } |
2376 | 556 |
9685 | 557 builtin_type_t builtin_type (void) const |
558 { return rep->builtin_type (); } | |
559 | |
5895 | 560 // Floating point types. |
561 | |
562 bool is_double_type (void) const | |
563 { return rep->is_double_type (); } | |
564 | |
565 bool is_single_type (void) const | |
566 { return rep->is_single_type (); } | |
567 | |
7576 | 568 bool is_float_type (void) const |
569 { return rep->is_float_type (); } | |
570 | |
5895 | 571 // Integer types. |
572 | |
573 bool is_int8_type (void) const | |
574 { return rep->is_int8_type (); } | |
575 | |
576 bool is_int16_type (void) const | |
577 { return rep->is_int16_type (); } | |
578 | |
579 bool is_int32_type (void) const | |
580 { return rep->is_int32_type (); } | |
581 | |
582 bool is_int64_type (void) const | |
583 { return rep->is_int64_type (); } | |
584 | |
585 bool is_uint8_type (void) const | |
586 { return rep->is_uint8_type (); } | |
587 | |
588 bool is_uint16_type (void) const | |
589 { return rep->is_uint16_type (); } | |
590 | |
591 bool is_uint32_type (void) const | |
592 { return rep->is_uint32_type (); } | |
593 | |
594 bool is_uint64_type (void) const | |
595 { return rep->is_uint64_type (); } | |
596 | |
2376 | 597 // Other type stuff. |
598 | |
5759 | 599 bool is_bool_type (void) const |
3209 | 600 { return rep->is_bool_type (); } |
601 | |
6223 | 602 bool is_integer_type (void) const |
603 { return rep->is_integer_type (); } | |
604 | |
5759 | 605 bool is_real_type (void) const |
2376 | 606 { return rep->is_real_type (); } |
607 | |
5759 | 608 bool is_complex_type (void) const |
2376 | 609 { return rep->is_complex_type (); } |
610 | |
5759 | 611 bool is_scalar_type (void) const |
2376 | 612 { return rep->is_scalar_type (); } |
613 | |
5759 | 614 bool is_matrix_type (void) const |
2376 | 615 { return rep->is_matrix_type (); } |
616 | |
5759 | 617 bool is_numeric_type (void) const |
2376 | 618 { return rep->is_numeric_type (); } |
619 | |
5759 | 620 bool is_sparse_type (void) const |
5631 | 621 { return rep->is_sparse_type (); } |
622 | |
2376 | 623 // Does this constant correspond to a truth value? |
624 | |
5759 | 625 bool is_true (void) const |
2376 | 626 { return rep->is_true (); } |
627 | |
8346
8302788f09db
fix empty matrix handling in switch statement
Jaroslav Hajek <highegg@gmail.com>
parents:
8345
diff
changeset
|
628 // Do two constants match (in a switch statement)? |
8302788f09db
fix empty matrix handling in switch statement
Jaroslav Hajek <highegg@gmail.com>
parents:
8345
diff
changeset
|
629 |
8302788f09db
fix empty matrix handling in switch statement
Jaroslav Hajek <highegg@gmail.com>
parents:
8345
diff
changeset
|
630 bool is_equal (const octave_value&) const; |
8302788f09db
fix empty matrix handling in switch statement
Jaroslav Hajek <highegg@gmail.com>
parents:
8345
diff
changeset
|
631 |
2376 | 632 // Are the dimensions of this constant zero by zero? |
633 | |
5759 | 634 bool is_zero_by_zero (void) const |
635 { return (rows () == 0 && columns () == 0); } | |
2376 | 636 |
5759 | 637 bool is_constant (void) const |
2974 | 638 { return rep->is_constant (); } |
639 | |
5759 | 640 bool is_function_handle (void) const |
4654 | 641 { return rep->is_function_handle (); } |
642 | |
5759 | 643 bool is_inline_function (void) const |
4954 | 644 { return rep->is_inline_function (); } |
645 | |
5759 | 646 bool is_function (void) const |
2974 | 647 { return rep->is_function (); } |
2891 | 648 |
7336 | 649 bool is_user_script (void) const |
650 { return rep->is_user_script (); } | |
651 | |
652 bool is_user_function (void) const | |
653 { return rep->is_user_function (); } | |
654 | |
7719
87eda1f8faaa
octave_user_code: new base class for octave_user_script and octave_user_function
John W. Eaton <jwe@octave.org>
parents:
7638
diff
changeset
|
655 bool is_user_code (void) const |
87eda1f8faaa
octave_user_code: new base class for octave_user_script and octave_user_function
John W. Eaton <jwe@octave.org>
parents:
7638
diff
changeset
|
656 { return rep->is_user_code (); } |
87eda1f8faaa
octave_user_code: new base class for octave_user_script and octave_user_function
John W. Eaton <jwe@octave.org>
parents:
7638
diff
changeset
|
657 |
5759 | 658 bool is_builtin_function (void) const |
3325 | 659 { return rep->is_builtin_function (); } |
660 | |
5759 | 661 bool is_dld_function (void) const |
3325 | 662 { return rep->is_dld_function (); } |
663 | |
5864 | 664 bool is_mex_function (void) const |
665 { return rep->is_mex_function (); } | |
666 | |
7876
8447a5024650
clear subfunctions when clearing parent function
John W. Eaton <jwe@octave.org>
parents:
7800
diff
changeset
|
667 void erase_subfunctions (void) { rep->erase_subfunctions (); } |
8447a5024650
clear subfunctions when clearing parent function
John W. Eaton <jwe@octave.org>
parents:
7800
diff
changeset
|
668 |
2376 | 669 // Values. |
670 | |
2891 | 671 octave_value eval (void) { return *this; } |
672 | |
5759 | 673 short int |
4254 | 674 short_value (bool req_int = false, bool frc_str_conv = false) const |
675 { return rep->short_value (req_int, frc_str_conv); } | |
676 | |
5759 | 677 unsigned short int |
4254 | 678 ushort_value (bool req_int = false, bool frc_str_conv = false) const |
679 { return rep->ushort_value (req_int, frc_str_conv); } | |
680 | |
5759 | 681 int int_value (bool req_int = false, bool frc_str_conv = false) const |
3202 | 682 { return rep->int_value (req_int, frc_str_conv); } |
683 | |
5759 | 684 unsigned int |
4254 | 685 uint_value (bool req_int = false, bool frc_str_conv = false) const |
686 { return rep->uint_value (req_int, frc_str_conv); } | |
687 | |
5759 | 688 int nint_value (bool frc_str_conv = false) const |
3202 | 689 { return rep->nint_value (frc_str_conv); } |
690 | |
5759 | 691 long int |
4254 | 692 long_value (bool req_int = false, bool frc_str_conv = false) const |
693 { return rep->long_value (req_int, frc_str_conv); } | |
694 | |
5759 | 695 unsigned long int |
4254 | 696 ulong_value (bool req_int = false, bool frc_str_conv = false) const |
697 { return rep->ulong_value (req_int, frc_str_conv); } | |
698 | |
6133 | 699 octave_idx_type |
8017
260294a5520f
octave_value::idx_type_value: move definition to ov.cc from ov.h
John W. Eaton <jwe@octave.org>
parents:
7885
diff
changeset
|
700 idx_type_value (bool req_int = false, bool frc_str_conv = false) const; |
6133 | 701 |
5759 | 702 double double_value (bool frc_str_conv = false) const |
2376 | 703 { return rep->double_value (frc_str_conv); } |
704 | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
705 float float_value (bool frc_str_conv = false) const |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
706 { return rep->float_value (frc_str_conv); } |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
707 |
5759 | 708 double scalar_value (bool frc_str_conv = false) const |
2916 | 709 { return rep->scalar_value (frc_str_conv); } |
710 | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
711 float float_scalar_value (bool frc_str_conv = false) const |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
712 { return rep->float_scalar_value (frc_str_conv); } |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
713 |
5759 | 714 Cell cell_value (void) const; |
3351 | 715 |
5759 | 716 Matrix matrix_value (bool frc_str_conv = false) const |
2376 | 717 { return rep->matrix_value (frc_str_conv); } |
718 | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
719 FloatMatrix float_matrix_value (bool frc_str_conv = false) const |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
720 { return rep->float_matrix_value (frc_str_conv); } |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
721 |
5759 | 722 NDArray array_value (bool frc_str_conv = false) const |
4550 | 723 { return rep->array_value (frc_str_conv); } |
4505 | 724 |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
725 FloatNDArray float_array_value (bool frc_str_conv = false) const |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
726 { return rep->float_array_value (frc_str_conv); } |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
727 |
5759 | 728 Complex complex_value (bool frc_str_conv = false) const |
2376 | 729 { return rep->complex_value (frc_str_conv); } |
730 | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
731 FloatComplex float_complex_value (bool frc_str_conv = false) const |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
732 { return rep->float_complex_value (frc_str_conv); } |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
733 |
5759 | 734 ComplexMatrix complex_matrix_value (bool frc_str_conv = false) const |
2376 | 735 { return rep->complex_matrix_value (frc_str_conv); } |
736 | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
737 FloatComplexMatrix float_complex_matrix_value (bool frc_str_conv = false) const |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
738 { return rep->float_complex_matrix_value (frc_str_conv); } |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
739 |
5759 | 740 ComplexNDArray complex_array_value (bool frc_str_conv = false) const |
4550 | 741 { return rep->complex_array_value (frc_str_conv); } |
742 | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
743 FloatComplexNDArray float_complex_array_value (bool frc_str_conv = false) const |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
744 { return rep->float_complex_array_value (frc_str_conv); } |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
745 |
5943 | 746 bool bool_value (bool warn = false) const |
747 { return rep->bool_value (warn); } | |
4550 | 748 |
5943 | 749 boolMatrix bool_matrix_value (bool warn = false) const |
750 { return rep->bool_matrix_value (warn); } | |
4550 | 751 |
5943 | 752 boolNDArray bool_array_value (bool warn = false) const |
753 { return rep->bool_array_value (warn); } | |
4550 | 754 |
5759 | 755 charMatrix char_matrix_value (bool frc_str_conv = false) const |
2376 | 756 { return rep->char_matrix_value (frc_str_conv); } |
757 | |
5759 | 758 charNDArray char_array_value (bool frc_str_conv = false) const |
4550 | 759 { return rep->char_array_value (frc_str_conv); } |
760 | |
5759 | 761 SparseMatrix sparse_matrix_value (bool frc_str_conv = false) const |
762 { return rep->sparse_matrix_value (frc_str_conv); } | |
5164 | 763 |
5759 | 764 SparseComplexMatrix sparse_complex_matrix_value (bool frc_str_conv = false) const |
765 { return rep->sparse_complex_matrix_value (frc_str_conv); } | |
5164 | 766 |
9852
aabf7a8c2e57
implement sparse logical conversion
Jaroslav Hajek <highegg@gmail.com>
parents:
9835
diff
changeset
|
767 SparseBoolMatrix sparse_bool_matrix_value (bool warn = false) const |
aabf7a8c2e57
implement sparse logical conversion
Jaroslav Hajek <highegg@gmail.com>
parents:
9835
diff
changeset
|
768 { return rep->sparse_bool_matrix_value (warn); } |
5164 | 769 |
8916
a2878ba31a9e
add diag & perm matrix query methods to octave_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8811
diff
changeset
|
770 DiagMatrix diag_matrix_value (bool force = false) const |
a2878ba31a9e
add diag & perm matrix query methods to octave_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8811
diff
changeset
|
771 { return rep->diag_matrix_value (force); } |
a2878ba31a9e
add diag & perm matrix query methods to octave_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8811
diff
changeset
|
772 |
a2878ba31a9e
add diag & perm matrix query methods to octave_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8811
diff
changeset
|
773 FloatDiagMatrix float_diag_matrix_value (bool force = false) const |
a2878ba31a9e
add diag & perm matrix query methods to octave_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8811
diff
changeset
|
774 { return rep->float_diag_matrix_value (force); } |
a2878ba31a9e
add diag & perm matrix query methods to octave_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8811
diff
changeset
|
775 |
a2878ba31a9e
add diag & perm matrix query methods to octave_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8811
diff
changeset
|
776 ComplexDiagMatrix complex_diag_matrix_value (bool force = false) const |
a2878ba31a9e
add diag & perm matrix query methods to octave_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8811
diff
changeset
|
777 { return rep->complex_diag_matrix_value (force); } |
a2878ba31a9e
add diag & perm matrix query methods to octave_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8811
diff
changeset
|
778 |
a2878ba31a9e
add diag & perm matrix query methods to octave_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8811
diff
changeset
|
779 FloatComplexDiagMatrix float_complex_diag_matrix_value (bool force = false) const |
a2878ba31a9e
add diag & perm matrix query methods to octave_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8811
diff
changeset
|
780 { return rep->float_complex_diag_matrix_value (force); } |
a2878ba31a9e
add diag & perm matrix query methods to octave_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8811
diff
changeset
|
781 |
a2878ba31a9e
add diag & perm matrix query methods to octave_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8811
diff
changeset
|
782 PermMatrix perm_matrix_value (void) const |
a2878ba31a9e
add diag & perm matrix query methods to octave_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8811
diff
changeset
|
783 { return rep->perm_matrix_value (); } |
a2878ba31a9e
add diag & perm matrix query methods to octave_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8811
diff
changeset
|
784 |
5759 | 785 octave_int8 int8_scalar_value (void) const |
4910 | 786 { return rep->int8_scalar_value (); } |
787 | |
5759 | 788 octave_int16 int16_scalar_value (void) const |
4910 | 789 { return rep->int16_scalar_value (); } |
790 | |
5759 | 791 octave_int32 int32_scalar_value (void) const |
4910 | 792 { return rep->int32_scalar_value (); } |
793 | |
5759 | 794 octave_int64 int64_scalar_value (void) const |
4910 | 795 { return rep->int64_scalar_value (); } |
796 | |
5759 | 797 octave_uint8 uint8_scalar_value (void) const |
4910 | 798 { return rep->uint8_scalar_value (); } |
799 | |
5759 | 800 octave_uint16 uint16_scalar_value (void) const |
4910 | 801 { return rep->uint16_scalar_value (); } |
802 | |
5759 | 803 octave_uint32 uint32_scalar_value (void) const |
4910 | 804 { return rep->uint32_scalar_value (); } |
805 | |
5759 | 806 octave_uint64 uint64_scalar_value (void) const |
4910 | 807 { return rep->uint64_scalar_value (); } |
808 | |
5759 | 809 int8NDArray int8_array_value (void) const |
4906 | 810 { return rep->int8_array_value (); } |
811 | |
5759 | 812 int16NDArray int16_array_value (void) const |
4906 | 813 { return rep->int16_array_value (); } |
814 | |
5759 | 815 int32NDArray int32_array_value (void) const |
4906 | 816 { return rep->int32_array_value (); } |
817 | |
5759 | 818 int64NDArray int64_array_value (void) const |
4906 | 819 { return rep->int64_array_value (); } |
820 | |
5759 | 821 uint8NDArray uint8_array_value (void) const |
4906 | 822 { return rep->uint8_array_value (); } |
823 | |
5759 | 824 uint16NDArray uint16_array_value (void) const |
4906 | 825 { return rep->uint16_array_value (); } |
826 | |
5759 | 827 uint32NDArray uint32_array_value (void) const |
4906 | 828 { return rep->uint32_array_value (); } |
829 | |
5759 | 830 uint64NDArray uint64_array_value (void) const |
4906 | 831 { return rep->uint64_array_value (); } |
832 | |
5759 | 833 string_vector all_strings (bool pad = false) const |
5715 | 834 { return rep->all_strings (pad); } |
2376 | 835 |
5759 | 836 std::string string_value (bool force = false) const |
4665 | 837 { return rep->string_value (force); } |
2376 | 838 |
8732 | 839 Array<std::string> cellstr_value (void) const |
840 { return rep->cellstr_value (); } | |
841 | |
5759 | 842 Range range_value (void) const |
2376 | 843 { return rep->range_value (); } |
844 | |
5759 | 845 Octave_map map_value (void) const; |
2376 | 846 |
5759 | 847 string_vector map_keys (void) const |
3933 | 848 { return rep->map_keys (); } |
849 | |
9151 | 850 size_t nparents (void) const |
851 { return rep->nparents (); } | |
852 | |
853 std::list<std::string> parent_class_name_list (void) const | |
854 { return rep->parent_class_name_list (); } | |
855 | |
9010
f914834836e7
Partial implementation of derived classes using the old form with "@" files.
rtshort@smoketree.phaselocked.com
parents:
8992
diff
changeset
|
856 string_vector parent_class_names (void) const |
f914834836e7
Partial implementation of derived classes using the old form with "@" files.
rtshort@smoketree.phaselocked.com
parents:
8992
diff
changeset
|
857 { return rep->parent_class_names (); } |
f914834836e7
Partial implementation of derived classes using the old form with "@" files.
rtshort@smoketree.phaselocked.com
parents:
8992
diff
changeset
|
858 |
f914834836e7
Partial implementation of derived classes using the old form with "@" files.
rtshort@smoketree.phaselocked.com
parents:
8992
diff
changeset
|
859 octave_base_value * |
f914834836e7
Partial implementation of derived classes using the old form with "@" files.
rtshort@smoketree.phaselocked.com
parents:
8992
diff
changeset
|
860 find_parent_class (const std::string& parent_class_name) |
f914834836e7
Partial implementation of derived classes using the old form with "@" files.
rtshort@smoketree.phaselocked.com
parents:
8992
diff
changeset
|
861 { return rep->find_parent_class (parent_class_name); } |
f914834836e7
Partial implementation of derived classes using the old form with "@" files.
rtshort@smoketree.phaselocked.com
parents:
8992
diff
changeset
|
862 |
10075
84b0725f4b09
return class types by reference in const Array element access functions
Jaroslav Hajek <highegg@gmail.com>
parents:
9881
diff
changeset
|
863 octave_function *function_value (bool silent = false) const; |
2974 | 864 |
10075
84b0725f4b09
return class types by reference in const Array element access functions
Jaroslav Hajek <highegg@gmail.com>
parents:
9881
diff
changeset
|
865 octave_user_function *user_function_value (bool silent = false) const; |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7740
diff
changeset
|
866 |
10075
84b0725f4b09
return class types by reference in const Array element access functions
Jaroslav Hajek <highegg@gmail.com>
parents:
9881
diff
changeset
|
867 octave_user_script *user_script_value (bool silent = false) const; |
4700 | 868 |
10075
84b0725f4b09
return class types by reference in const Array element access functions
Jaroslav Hajek <highegg@gmail.com>
parents:
9881
diff
changeset
|
869 octave_user_code *user_code_value (bool silent = false) const; |
7719
87eda1f8faaa
octave_user_code: new base class for octave_user_script and octave_user_function
John W. Eaton <jwe@octave.org>
parents:
7638
diff
changeset
|
870 |
10075
84b0725f4b09
return class types by reference in const Array element access functions
Jaroslav Hajek <highegg@gmail.com>
parents:
9881
diff
changeset
|
871 octave_fcn_handle *fcn_handle_value (bool silent = false) const; |
4343 | 872 |
10075
84b0725f4b09
return class types by reference in const Array element access functions
Jaroslav Hajek <highegg@gmail.com>
parents:
9881
diff
changeset
|
873 octave_fcn_inline *fcn_inline_value (bool silent = false) const; |
4933 | 874 |
5759 | 875 octave_value_list list_value (void) const; |
2880 | 876 |
3419 | 877 ColumnVector column_vector_value (bool frc_str_conv = false, |
2376 | 878 bool frc_vec_conv = false) const; |
879 | |
880 ComplexColumnVector | |
3419 | 881 complex_column_vector_value (bool frc_str_conv = false, |
2376 | 882 bool frc_vec_conv = false) const; |
883 | |
3419 | 884 RowVector row_vector_value (bool frc_str_conv = false, |
885 bool frc_vec_conv = false) const; | |
886 | |
887 ComplexRowVector | |
888 complex_row_vector_value (bool frc_str_conv = false, | |
889 bool frc_vec_conv = false) const; | |
890 | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
891 |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
892 FloatColumnVector float_column_vector_value (bool frc_str_conv = false, |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
893 bool frc_vec_conv = false) const; |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
894 |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
895 FloatComplexColumnVector |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
896 float_complex_column_vector_value (bool frc_str_conv = false, |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
897 bool frc_vec_conv = false) const; |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
898 |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
899 FloatRowVector float_row_vector_value (bool frc_str_conv = false, |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
900 bool frc_vec_conv = false) const; |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
901 |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
902 FloatComplexRowVector |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
903 float_complex_row_vector_value (bool frc_str_conv = false, |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
904 bool frc_vec_conv = false) const; |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
905 |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
906 |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
907 |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
908 |
4044 | 909 Array<int> int_vector_value (bool req_int = false, |
910 bool frc_str_conv = false, | |
911 bool frc_vec_conv = false) const; | |
912 | |
8811 | 913 Array<octave_idx_type> |
914 octave_idx_type_vector_value (bool req_int = false, | |
915 bool frc_str_conv = false, | |
916 bool frc_vec_conv = false) const; | |
917 | |
3419 | 918 Array<double> vector_value (bool frc_str_conv = false, |
919 bool frc_vec_conv = false) const; | |
920 | |
921 Array<Complex> complex_vector_value (bool frc_str_conv = false, | |
922 bool frc_vec_conv = false) const; | |
923 | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
924 Array<float> float_vector_value (bool frc_str_conv = false, |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
925 bool frc_vec_conv = false) const; |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
926 |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
927 Array<FloatComplex> float_complex_vector_value (bool frc_str_conv = false, |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
928 bool frc_vec_conv = false) const; |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
929 |
8523
ad3afaaa19c1
implement non-copying contiguous range indexing
Jaroslav Hajek <highegg@gmail.com>
parents:
8458
diff
changeset
|
930 // Possibly economize a lazy-indexed value. |
8150
283989f2da9b
make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents:
8017
diff
changeset
|
931 |
8523
ad3afaaa19c1
implement non-copying contiguous range indexing
Jaroslav Hajek <highegg@gmail.com>
parents:
8458
diff
changeset
|
932 void maybe_economize (void) |
ad3afaaa19c1
implement non-copying contiguous range indexing
Jaroslav Hajek <highegg@gmail.com>
parents:
8458
diff
changeset
|
933 { rep->maybe_economize (); } |
ad3afaaa19c1
implement non-copying contiguous range indexing
Jaroslav Hajek <highegg@gmail.com>
parents:
8458
diff
changeset
|
934 |
8531
b01fef323c24
add some explaining comments
Jaroslav Hajek <highegg@gmail.com>
parents:
8523
diff
changeset
|
935 // The following two hook conversions are called on any octave_value prior to |
b01fef323c24
add some explaining comments
Jaroslav Hajek <highegg@gmail.com>
parents:
8523
diff
changeset
|
936 // storing it to a "permanent" location, like a named variable, a cell or a |
b01fef323c24
add some explaining comments
Jaroslav Hajek <highegg@gmail.com>
parents:
8523
diff
changeset
|
937 // struct component, or a return value of a function. |
8523
ad3afaaa19c1
implement non-copying contiguous range indexing
Jaroslav Hajek <highegg@gmail.com>
parents:
8458
diff
changeset
|
938 |
ad3afaaa19c1
implement non-copying contiguous range indexing
Jaroslav Hajek <highegg@gmail.com>
parents:
8458
diff
changeset
|
939 octave_value storable_value (void) const; |
8150
283989f2da9b
make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents:
8017
diff
changeset
|
940 |
8531
b01fef323c24
add some explaining comments
Jaroslav Hajek <highegg@gmail.com>
parents:
8523
diff
changeset
|
941 // Ditto, but in place, i.e. equivalent to *this = this->storable_value (), |
b01fef323c24
add some explaining comments
Jaroslav Hajek <highegg@gmail.com>
parents:
8523
diff
changeset
|
942 // but possibly more efficient. |
8150
283989f2da9b
make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents:
8017
diff
changeset
|
943 |
8523
ad3afaaa19c1
implement non-copying contiguous range indexing
Jaroslav Hajek <highegg@gmail.com>
parents:
8458
diff
changeset
|
944 void make_storable_value (void); |
8150
283989f2da9b
make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents:
8017
diff
changeset
|
945 |
2376 | 946 // Conversions. These should probably be private. If a user of this |
947 // class wants a certain kind of constant, he should simply ask for | |
948 // it, and we should convert it if possible. | |
949 | |
5279 | 950 octave_value convert_to_str (bool pad = false, bool force = false, |
9689
34d6f005db4b
eliminate is_string argument from octave_value character array constructors
John W. Eaton <jwe@octave.org>
parents:
9685
diff
changeset
|
951 char type = '\'') const |
34d6f005db4b
eliminate is_string argument from octave_value character array constructors
John W. Eaton <jwe@octave.org>
parents:
9685
diff
changeset
|
952 { return rep->convert_to_str (pad, force, type); } |
4452 | 953 |
5759 | 954 octave_value |
5279 | 955 convert_to_str_internal (bool pad, bool force, char type) const |
956 { return rep->convert_to_str_internal (pad, force, type); } | |
2376 | 957 |
5759 | 958 void convert_to_row_or_column_vector (void) |
2376 | 959 { rep->convert_to_row_or_column_vector (); } |
960 | |
5759 | 961 bool print_as_scalar (void) const |
4604 | 962 { return rep->print_as_scalar (); } |
963 | |
5759 | 964 void print (std::ostream& os, bool pr_as_read_syntax = false) const |
2466 | 965 { rep->print (os, pr_as_read_syntax); } |
2376 | 966 |
5759 | 967 void print_raw (std::ostream& os, |
4457 | 968 bool pr_as_read_syntax = false) const |
2903 | 969 { rep->print_raw (os, pr_as_read_syntax); } |
970 | |
5759 | 971 bool print_name_tag (std::ostream& os, const std::string& name) const |
2903 | 972 { return rep->print_name_tag (os, name); } |
2376 | 973 |
3523 | 974 void print_with_name (std::ostream& os, const std::string& name, |
5759 | 975 bool print_padding = true) const |
976 { rep->print_with_name (os, name, print_padding); } | |
2376 | 977 |
5759 | 978 int type_id (void) const { return rep->type_id (); } |
2376 | 979 |
5759 | 980 std::string type_name (void) const { return rep->type_name (); } |
981 | |
982 std::string class_name (void) const { return rep->class_name (); } | |
4612 | 983 |
3203 | 984 // Unary and binary operations. |
985 | |
6109 | 986 friend OCTINTERP_API octave_value do_unary_op (unary_op op, |
3933 | 987 const octave_value& a); |
3203 | 988 |
3933 | 989 const octave_value& do_non_const_unary_op (unary_op op); |
990 | |
991 void do_non_const_unary_op (unary_op op, const octave_value_list& idx); | |
2376 | 992 |
4247 | 993 octave_value do_non_const_unary_op (unary_op op, const std::string& type, |
4219 | 994 const std::list<octave_value_list>& idx); |
3205 | 995 |
6109 | 996 friend OCTINTERP_API octave_value do_binary_op (binary_op op, |
3933 | 997 const octave_value& a, |
998 const octave_value& b); | |
2376 | 999 |
7800
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
1000 friend OCTINTERP_API octave_value do_binary_op (compound_binary_op op, |
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
1001 const octave_value& a, |
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
1002 const octave_value& b); |
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
1003 |
6109 | 1004 friend OCTINTERP_API octave_value do_cat_op (const octave_value& a, |
4915 | 1005 const octave_value& b, |
6867 | 1006 const Array<octave_idx_type>& ra_idx); |
4915 | 1007 |
5759 | 1008 const octave_base_value& get_rep (void) const { return *rep; } |
3301 | 1009 |
8456
c1709a45b45b
optimize structure components access
Jaroslav Hajek <highegg@gmail.com>
parents:
8437
diff
changeset
|
1010 bool is_copy_of (const octave_value &val) const { return rep == val.rep; } |
c1709a45b45b
optimize structure components access
Jaroslav Hajek <highegg@gmail.com>
parents:
8437
diff
changeset
|
1011 |
5759 | 1012 void print_info (std::ostream& os, |
3933 | 1013 const std::string& prefix = std::string ()) const; |
1014 | |
6974 | 1015 bool save_ascii (std::ostream& os) { return rep->save_ascii (os); } |
4687 | 1016 |
6974 | 1017 bool load_ascii (std::istream& is) { return rep->load_ascii (is); } |
4687 | 1018 |
5759 | 1019 bool save_binary (std::ostream& os, bool& save_as_floats) |
4687 | 1020 { return rep->save_binary (os, save_as_floats); } |
1021 | |
5759 | 1022 bool load_binary (std::istream& is, bool swap, |
4687 | 1023 oct_mach_info::float_format fmt) |
1024 { return rep->load_binary (is, swap, fmt); } | |
1025 | |
1026 #if defined (HAVE_HDF5) | |
5759 | 1027 bool save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats) |
4687 | 1028 { return rep->save_hdf5 (loc_id, name, save_as_floats); } |
1029 | |
9881
b3089dba88bf
Remove HDF5 cruft for older versions of HDF5
Kacper Kowalik
parents:
9852
diff
changeset
|
1030 bool load_hdf5 (hid_t loc_id, const char *name) |
b3089dba88bf
Remove HDF5 cruft for older versions of HDF5
Kacper Kowalik
parents:
9852
diff
changeset
|
1031 { return rep->load_hdf5 (loc_id, name); } |
4687 | 1032 #endif |
1033 | |
5759 | 1034 int write (octave_stream& os, int block_size, |
4944 | 1035 oct_data_conv::data_type output_type, int skip, |
1036 oct_mach_info::float_format flt_fmt) const; | |
1037 | |
5759 | 1038 octave_base_value *internal_rep (void) const { return rep; } |
4901 | 1039 |
5900 | 1040 // Unsafe. These functions exist to support the MEX interface. |
1041 // You should not use them anywhere else. | |
1042 void *mex_get_data (void) const { return rep->mex_get_data (); } | |
1043 | |
1044 octave_idx_type *mex_get_ir (void) const { return rep->mex_get_ir (); } | |
1045 | |
1046 octave_idx_type *mex_get_jc (void) const { return rep->mex_get_jc (); } | |
1047 | |
1048 mxArray *as_mxArray (void) const { return rep->as_mxArray (); } | |
1049 | |
7620
36594d5bbe13
Move diag function into the octave_value class
David Bateman <dbateman@free.fr>
parents:
7576
diff
changeset
|
1050 octave_value diag (octave_idx_type k = 0) const |
36594d5bbe13
Move diag function into the octave_value class
David Bateman <dbateman@free.fr>
parents:
7576
diff
changeset
|
1051 { return rep->diag (k); } |
36594d5bbe13
Move diag function into the octave_value class
David Bateman <dbateman@free.fr>
parents:
7576
diff
changeset
|
1052 |
7463
2467639bd8c0
eliminate UNDEFINED sort mode
John W. Eaton <jwe@octave.org>
parents:
7433
diff
changeset
|
1053 octave_value sort (octave_idx_type dim = 0, sortmode mode = ASCENDING) const |
7433 | 1054 { return rep->sort (dim, mode); } |
1055 octave_value sort (Array<octave_idx_type> &sidx, octave_idx_type dim = 0, | |
7463
2467639bd8c0
eliminate UNDEFINED sort mode
John W. Eaton <jwe@octave.org>
parents:
7433
diff
changeset
|
1056 sortmode mode = ASCENDING) const |
7433 | 1057 { return rep->sort (sidx, dim, mode); } |
1058 | |
8734
767ed8cc6634
rename internal issorted and issorted_rows functions to is_sorted and is_sorted_rows
John W. Eaton <jwe@octave.org>
parents:
8733
diff
changeset
|
1059 sortmode is_sorted (sortmode mode = UNSORTED) const |
767ed8cc6634
rename internal issorted and issorted_rows functions to is_sorted and is_sorted_rows
John W. Eaton <jwe@octave.org>
parents:
8733
diff
changeset
|
1060 { return rep->is_sorted (mode); } |
8721
e9cb742df9eb
imported patch sort3.diff
Jaroslav Hajek <highegg@gmail.com>
parents:
8676
diff
changeset
|
1061 |
8733
3ef774603887
rename all uses of sortrows_idx to sort_rows_idx
John W. Eaton <jwe@octave.org>
parents:
8732
diff
changeset
|
1062 Array<octave_idx_type> sort_rows_idx (sortmode mode = ASCENDING) const |
3ef774603887
rename all uses of sortrows_idx to sort_rows_idx
John W. Eaton <jwe@octave.org>
parents:
8732
diff
changeset
|
1063 { return rep->sort_rows_idx (mode); } |
8721
e9cb742df9eb
imported patch sort3.diff
Jaroslav Hajek <highegg@gmail.com>
parents:
8676
diff
changeset
|
1064 |
8734
767ed8cc6634
rename internal issorted and issorted_rows functions to is_sorted and is_sorted_rows
John W. Eaton <jwe@octave.org>
parents:
8733
diff
changeset
|
1065 sortmode is_sorted_rows (sortmode mode = UNSORTED) const |
767ed8cc6634
rename internal issorted and issorted_rows functions to is_sorted and is_sorted_rows
John W. Eaton <jwe@octave.org>
parents:
8733
diff
changeset
|
1066 { return rep->is_sorted_rows (mode); } |
8721
e9cb742df9eb
imported patch sort3.diff
Jaroslav Hajek <highegg@gmail.com>
parents:
8676
diff
changeset
|
1067 |
7489
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7463
diff
changeset
|
1068 void lock (void) { rep->lock (); } |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7463
diff
changeset
|
1069 |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7463
diff
changeset
|
1070 void unlock (void) { rep->unlock (); } |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7463
diff
changeset
|
1071 |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7463
diff
changeset
|
1072 bool islocked (void) const { return rep->islocked (); } |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7463
diff
changeset
|
1073 |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7740
diff
changeset
|
1074 void dump (std::ostream& os) const { rep->dump (os); } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7740
diff
changeset
|
1075 |
9813
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1076 #define MAPPER_FORWARD(F) \ |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1077 octave_value F (void) const { return rep->map (octave_base_value::umap_ ## F); } |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1078 |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1079 MAPPER_FORWARD (abs) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1080 MAPPER_FORWARD (acos) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1081 MAPPER_FORWARD (acosh) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1082 MAPPER_FORWARD (angle) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1083 MAPPER_FORWARD (arg) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1084 MAPPER_FORWARD (asin) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1085 MAPPER_FORWARD (asinh) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1086 MAPPER_FORWARD (atan) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1087 MAPPER_FORWARD (atanh) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1088 MAPPER_FORWARD (ceil) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1089 MAPPER_FORWARD (conj) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1090 MAPPER_FORWARD (cos) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1091 MAPPER_FORWARD (cosh) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1092 MAPPER_FORWARD (erf) |
9835
1bb1ed717d2f
implement built-in erfinv
Jaroslav Hajek <highegg@gmail.com>
parents:
9813
diff
changeset
|
1093 MAPPER_FORWARD (erfinv) |
9813
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1094 MAPPER_FORWARD (erfc) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1095 MAPPER_FORWARD (exp) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1096 MAPPER_FORWARD (expm1) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1097 MAPPER_FORWARD (finite) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1098 MAPPER_FORWARD (fix) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1099 MAPPER_FORWARD (floor) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1100 MAPPER_FORWARD (gamma) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1101 MAPPER_FORWARD (imag) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1102 MAPPER_FORWARD (isinf) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1103 MAPPER_FORWARD (isna) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1104 MAPPER_FORWARD (isnan) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1105 MAPPER_FORWARD (lgamma) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1106 MAPPER_FORWARD (log) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1107 MAPPER_FORWARD (log2) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1108 MAPPER_FORWARD (log10) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1109 MAPPER_FORWARD (log1p) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1110 MAPPER_FORWARD (real) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1111 MAPPER_FORWARD (round) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1112 MAPPER_FORWARD (roundb) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1113 MAPPER_FORWARD (signum) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1114 MAPPER_FORWARD (sin) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1115 MAPPER_FORWARD (sinh) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1116 MAPPER_FORWARD (sqrt) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1117 MAPPER_FORWARD (tan) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1118 MAPPER_FORWARD (tanh) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1119 |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1120 // These functions are prefixed with X to avoid potential macro |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1121 // conflicts. |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1122 |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1123 MAPPER_FORWARD (xisalnum) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1124 MAPPER_FORWARD (xisalpha) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1125 MAPPER_FORWARD (xisascii) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1126 MAPPER_FORWARD (xiscntrl) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1127 MAPPER_FORWARD (xisdigit) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1128 MAPPER_FORWARD (xisgraph) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1129 MAPPER_FORWARD (xislower) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1130 MAPPER_FORWARD (xisprint) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1131 MAPPER_FORWARD (xispunct) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1132 MAPPER_FORWARD (xisspace) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1133 MAPPER_FORWARD (xisupper) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1134 MAPPER_FORWARD (xisxdigit) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1135 MAPPER_FORWARD (xtoascii) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1136 MAPPER_FORWARD (xtolower) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1137 MAPPER_FORWARD (xtoupper) |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1138 |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1139 #undef MAPPER_FORWARD |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1140 |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1141 octave_value map (octave_base_value::unary_mapper_t umap) const |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
1142 { return rep->map (umap); } |
7503
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7489
diff
changeset
|
1143 |
2376 | 1144 protected: |
1145 | |
5759 | 1146 // The real representation. |
1147 octave_base_value *rep; | |
2413 | 1148 |
3933 | 1149 private: |
2903 | 1150 |
3205 | 1151 assign_op unary_op_to_assign_op (unary_op op); |
1152 | |
3204 | 1153 binary_op op_eq_to_binary_op (assign_op op); |
1154 | |
9521 | 1155 // This declaration protects against constructing octave_value from |
1156 // const octave_base_value* which actually silently calls octave_value (bool). | |
1157 octave_value (const octave_base_value *); | |
1158 | |
3219 | 1159 DECLARE_OCTAVE_ALLOCATOR |
2376 | 1160 }; |
1161 | |
5508 | 1162 // Publish externally used friend functions. |
1163 | |
6109 | 1164 extern OCTINTERP_API octave_value |
5508 | 1165 do_unary_op (octave_value::unary_op op, const octave_value& a); |
1166 | |
6109 | 1167 extern OCTINTERP_API octave_value |
5508 | 1168 do_binary_op (octave_value::binary_op op, |
1169 const octave_value& a, const octave_value& b); | |
1170 | |
7800
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
1171 extern OCTINTERP_API octave_value |
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
1172 do_binary_op (octave_value::compound_binary_op op, |
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
1173 const octave_value& a, const octave_value& b); |
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
1174 |
3203 | 1175 #define OV_UNOP_FN(name) \ |
1176 inline octave_value \ | |
1177 name (const octave_value& a) \ | |
1178 { \ | |
1179 return do_unary_op (octave_value::name, a); \ | |
1180 } | |
1181 | |
1182 #define OV_UNOP_OP(name, op) \ | |
1183 inline octave_value \ | |
1184 operator op (const octave_value& a) \ | |
1185 { \ | |
1186 return name (a); \ | |
1187 } | |
1188 | |
1189 #define OV_UNOP_FN_OP(name, op) \ | |
1190 OV_UNOP_FN (name) \ | |
1191 OV_UNOP_OP (name, op) | |
1192 | |
3525 | 1193 OV_UNOP_FN_OP (op_not, !) |
6518 | 1194 OV_UNOP_FN_OP (op_uplus, +) |
3525 | 1195 OV_UNOP_FN_OP (op_uminus, -) |
3203 | 1196 |
3525 | 1197 OV_UNOP_FN (op_transpose) |
1198 OV_UNOP_FN (op_hermitian) | |
3203 | 1199 |
1200 // No simple way to define these for prefix and suffix ops? | |
1201 // | |
1202 // incr | |
1203 // decr | |
1204 | |
1205 #define OV_BINOP_FN(name) \ | |
1206 inline octave_value \ | |
1207 name (const octave_value& a1, const octave_value& a2) \ | |
1208 { \ | |
1209 return do_binary_op (octave_value::name, a1, a2); \ | |
1210 } | |
1211 | |
1212 #define OV_BINOP_OP(name, op) \ | |
1213 inline octave_value \ | |
1214 operator op (const octave_value& a1, const octave_value& a2) \ | |
1215 { \ | |
1216 return name (a1, a2); \ | |
1217 } | |
1218 | |
1219 #define OV_BINOP_FN_OP(name, op) \ | |
1220 OV_BINOP_FN (name) \ | |
1221 OV_BINOP_OP (name, op) | |
1222 | |
3525 | 1223 OV_BINOP_FN_OP (op_add, +) |
1224 OV_BINOP_FN_OP (op_sub, -) | |
1225 OV_BINOP_FN_OP (op_mul, *) | |
1226 OV_BINOP_FN_OP (op_div, /) | |
3203 | 1227 |
3525 | 1228 OV_BINOP_FN (op_pow) |
1229 OV_BINOP_FN (op_ldiv) | |
1230 OV_BINOP_FN (op_lshift) | |
1231 OV_BINOP_FN (op_rshift) | |
3203 | 1232 |
3525 | 1233 OV_BINOP_FN_OP (op_lt, <) |
1234 OV_BINOP_FN_OP (op_le, <=) | |
1235 OV_BINOP_FN_OP (op_eq, ==) | |
1236 OV_BINOP_FN_OP (op_ge, >=) | |
1237 OV_BINOP_FN_OP (op_gt, >) | |
1238 OV_BINOP_FN_OP (op_ne, !=) | |
3203 | 1239 |
3525 | 1240 OV_BINOP_FN (op_el_mul) |
1241 OV_BINOP_FN (op_el_div) | |
1242 OV_BINOP_FN (op_el_pow) | |
1243 OV_BINOP_FN (op_el_ldiv) | |
1244 OV_BINOP_FN (op_el_and) | |
1245 OV_BINOP_FN (op_el_or) | |
3203 | 1246 |
3525 | 1247 OV_BINOP_FN (op_struct_ref) |
3203 | 1248 |
7800
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
1249 #define OV_COMP_BINOP_FN(name) \ |
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
1250 inline octave_value \ |
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
1251 name (const octave_value& a1, const octave_value& a2) \ |
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
1252 { \ |
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
1253 return do_binary_op (octave_value::name, a1, a2); \ |
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
1254 } |
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
1255 |
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
1256 OV_COMP_BINOP_FN (op_trans_mul) |
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
1257 OV_COMP_BINOP_FN (op_mul_trans) |
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
1258 OV_COMP_BINOP_FN (op_herm_mul) |
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
1259 OV_COMP_BINOP_FN (op_mul_herm) |
5861b95e9879
support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
1260 |
6109 | 1261 extern OCTINTERP_API void install_types (void); |
2376 | 1262 |
5759 | 1263 // This will eventually go away, but for now it can be used to |
1264 // simplify the transition to the new octave_value class hierarchy, | |
1265 // which uses octave_base_value instead of octave_value for the type | |
1266 // of octave_value::rep. | |
1267 #define OV_REP_TYPE octave_base_value | |
1268 | |
9657
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1269 // Templated value extractors. |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1270 template<class Value> |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1271 inline Value octave_value_extract (const octave_value&) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1272 { assert (false); } |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1273 |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1274 #define DEF_VALUE_EXTRACTOR(VALUE,MPREFIX) \ |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1275 template<> \ |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1276 inline VALUE octave_value_extract<VALUE> (const octave_value& v) \ |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1277 { return v.MPREFIX ## _value (); } |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1278 |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1279 DEF_VALUE_EXTRACTOR (double, scalar) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1280 DEF_VALUE_EXTRACTOR (float, float_scalar) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1281 DEF_VALUE_EXTRACTOR (Complex, complex) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1282 DEF_VALUE_EXTRACTOR (FloatComplex, float_complex) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1283 DEF_VALUE_EXTRACTOR (bool, bool) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1284 |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1285 DEF_VALUE_EXTRACTOR (octave_int8, int8_scalar) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1286 DEF_VALUE_EXTRACTOR (octave_int16, int16_scalar) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1287 DEF_VALUE_EXTRACTOR (octave_int32, int32_scalar) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1288 DEF_VALUE_EXTRACTOR (octave_int64, int64_scalar) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1289 DEF_VALUE_EXTRACTOR (octave_uint8, uint8_scalar) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1290 DEF_VALUE_EXTRACTOR (octave_uint16, uint16_scalar) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1291 DEF_VALUE_EXTRACTOR (octave_uint32, uint32_scalar) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1292 DEF_VALUE_EXTRACTOR (octave_uint64, uint64_scalar) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1293 |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1294 |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1295 DEF_VALUE_EXTRACTOR (NDArray, array) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1296 DEF_VALUE_EXTRACTOR (FloatNDArray, float_array) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1297 DEF_VALUE_EXTRACTOR (ComplexNDArray, complex_array) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1298 DEF_VALUE_EXTRACTOR (FloatComplexNDArray, float_complex_array) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1299 DEF_VALUE_EXTRACTOR (boolNDArray, bool_array) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1300 |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1301 DEF_VALUE_EXTRACTOR (charNDArray, char_array) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1302 DEF_VALUE_EXTRACTOR (int8NDArray, int8_array) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1303 DEF_VALUE_EXTRACTOR (int16NDArray, int16_array) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1304 DEF_VALUE_EXTRACTOR (int32NDArray, int32_array) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1305 DEF_VALUE_EXTRACTOR (int64NDArray, int64_array) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1306 DEF_VALUE_EXTRACTOR (uint8NDArray, uint8_array) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1307 DEF_VALUE_EXTRACTOR (uint16NDArray, uint16_array) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1308 DEF_VALUE_EXTRACTOR (uint32NDArray, uint32_array) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1309 DEF_VALUE_EXTRACTOR (uint64NDArray, uint64_array) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1310 |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1311 DEF_VALUE_EXTRACTOR (Matrix, matrix) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1312 DEF_VALUE_EXTRACTOR (FloatMatrix, float_matrix) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1313 DEF_VALUE_EXTRACTOR (ComplexMatrix, complex_matrix) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1314 DEF_VALUE_EXTRACTOR (FloatComplexMatrix, float_complex_matrix) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1315 DEF_VALUE_EXTRACTOR (boolMatrix, bool_matrix) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1316 |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1317 DEF_VALUE_EXTRACTOR (ColumnVector, column_vector) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1318 DEF_VALUE_EXTRACTOR (FloatColumnVector, float_column_vector) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1319 DEF_VALUE_EXTRACTOR (ComplexColumnVector, complex_column_vector) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1320 DEF_VALUE_EXTRACTOR (FloatComplexColumnVector, float_complex_column_vector) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1321 |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1322 DEF_VALUE_EXTRACTOR (RowVector, row_vector) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1323 DEF_VALUE_EXTRACTOR (FloatRowVector, float_row_vector) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1324 DEF_VALUE_EXTRACTOR (ComplexRowVector, complex_row_vector) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1325 DEF_VALUE_EXTRACTOR (FloatComplexRowVector, float_complex_row_vector) |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1326 |
9685 | 1327 DEF_VALUE_EXTRACTOR (DiagMatrix, diag_matrix) |
1328 DEF_VALUE_EXTRACTOR (FloatDiagMatrix, float_diag_matrix) | |
1329 DEF_VALUE_EXTRACTOR (ComplexDiagMatrix, complex_diag_matrix) | |
1330 DEF_VALUE_EXTRACTOR (FloatComplexDiagMatrix, float_complex_diag_matrix) | |
1331 DEF_VALUE_EXTRACTOR (PermMatrix, perm_matrix) | |
1332 | |
9789
97f5de91427b
support sparse templated extractors
Jaroslav Hajek <highegg@gmail.com>
parents:
9732
diff
changeset
|
1333 DEF_VALUE_EXTRACTOR (SparseMatrix, sparse_matrix) |
97f5de91427b
support sparse templated extractors
Jaroslav Hajek <highegg@gmail.com>
parents:
9732
diff
changeset
|
1334 DEF_VALUE_EXTRACTOR (SparseComplexMatrix, sparse_complex_matrix) |
97f5de91427b
support sparse templated extractors
Jaroslav Hajek <highegg@gmail.com>
parents:
9732
diff
changeset
|
1335 DEF_VALUE_EXTRACTOR (SparseBoolMatrix, sparse_bool_matrix) |
9657
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1336 #undef DEF_VALUE_EXTRACTOR |
3c1c3a38ec7b
implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents:
9607
diff
changeset
|
1337 |
2376 | 1338 #endif |