Mercurial > hg > octave-nkf
annotate libinterp/octave-value/ov-base.h @ 15767:e665645fb402
only register java type if using java
* ov.cc: Only include ov-java.h if HAVE_JAVA.
(install_types): Only call octave_java::register_type if HAVE_JAVA.
From Andreas Weber <andreas.weber@hs-offenburg.de>.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Wed, 12 Dec 2012 08:38:22 -0500 |
parents | 2fac72a256ce |
children | e61405133a76 |
rev | line source |
---|---|
2376 | 1 /* |
2 | |
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
14013
diff
changeset
|
3 Copyright (C) 1996-2012 John W. Eaton |
11523 | 4 Copyright (C) 2009-2010 VZLU Prague |
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_base_value_h) | |
25 #define octave_base_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> |
5759 | 30 #include <list> |
2376 | 31 #include <string> |
32 | |
5759 | 33 #include "Range.h" |
5828 | 34 #include "data-conv.h" |
2376 | 35 #include "mx-base.h" |
36 #include "str-vec.h" | |
37 | |
38 #include "error.h" | |
8676 | 39 #include "oct-hdf5.h" |
2376 | 40 |
3351 | 41 class Cell; |
15149
62a35ae7d6a2
use forward decls for mxArray in ov.h and ov-base.h
John W. Eaton <jwe@octave.org>
parents:
15057
diff
changeset
|
42 class mxArray; |
10742
604e13a89c7f
initial code for structs rewrite
Jaroslav Hajek <highegg@gmail.com>
parents:
10670
diff
changeset
|
43 class octave_map; |
604e13a89c7f
initial code for structs rewrite
Jaroslav Hajek <highegg@gmail.com>
parents:
10670
diff
changeset
|
44 class octave_scalar_map; |
5759 | 45 class octave_value; |
2376 | 46 class octave_value_list; |
5759 | 47 class octave_stream; |
48 class octave_function; | |
49 class octave_user_function; | |
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
|
50 class octave_user_script; |
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
|
51 class octave_user_code; |
5759 | 52 class octave_fcn_handle; |
53 class octave_fcn_inline; | |
54 class octave_value_list; | |
55 class octave_lvalue; | |
2376 | 56 |
57 class tree_walker; | |
58 | |
9685 | 59 enum builtin_type_t |
60 { | |
61 btyp_double, | |
62 btyp_float, | |
63 btyp_complex, | |
64 btyp_float_complex, | |
65 btyp_int8, | |
66 btyp_int16, | |
67 btyp_int32, | |
68 btyp_int64, | |
69 btyp_uint8, | |
70 btyp_uint16, | |
71 btyp_uint32, | |
72 btyp_uint64, | |
9790
a5035bc7fbfb
rewrite dispatch part & slightly improve min,max,cummin,cummax
Jaroslav Hajek <highegg@gmail.com>
parents:
9767
diff
changeset
|
73 btyp_bool, |
9685 | 74 btyp_char, |
10087
090173f2db40
improve overload dispatching of built-in classes
Jaroslav Hajek <highegg@gmail.com>
parents:
10075
diff
changeset
|
75 btyp_struct, |
090173f2db40
improve overload dispatching of built-in classes
Jaroslav Hajek <highegg@gmail.com>
parents:
10075
diff
changeset
|
76 btyp_cell, |
090173f2db40
improve overload dispatching of built-in classes
Jaroslav Hajek <highegg@gmail.com>
parents:
10075
diff
changeset
|
77 btyp_func_handle, |
9743
26abff55f6fe
optimize bsxfun for common built-in operations
Jaroslav Hajek <highegg@gmail.com>
parents:
9689
diff
changeset
|
78 btyp_unknown, |
26abff55f6fe
optimize bsxfun for common built-in operations
Jaroslav Hajek <highegg@gmail.com>
parents:
9689
diff
changeset
|
79 btyp_num_types = btyp_unknown |
9685 | 80 }; |
81 | |
11586
12df7854fa7c
strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
82 extern OCTINTERP_API std::string |
10087
090173f2db40
improve overload dispatching of built-in classes
Jaroslav Hajek <highegg@gmail.com>
parents:
10075
diff
changeset
|
83 btyp_class_name [btyp_num_types]; |
090173f2db40
improve overload dispatching of built-in classes
Jaroslav Hajek <highegg@gmail.com>
parents:
10075
diff
changeset
|
84 |
090173f2db40
improve overload dispatching of built-in classes
Jaroslav Hajek <highegg@gmail.com>
parents:
10075
diff
changeset
|
85 extern OCTINTERP_API string_vector |
11586
12df7854fa7c
strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
86 get_builtin_classes (void); |
10087
090173f2db40
improve overload dispatching of built-in classes
Jaroslav Hajek <highegg@gmail.com>
parents:
10075
diff
changeset
|
87 |
9790
a5035bc7fbfb
rewrite dispatch part & slightly improve min,max,cummin,cummax
Jaroslav Hajek <highegg@gmail.com>
parents:
9767
diff
changeset
|
88 inline bool btyp_isnumeric (builtin_type_t btyp) |
a5035bc7fbfb
rewrite dispatch part & slightly improve min,max,cummin,cummax
Jaroslav Hajek <highegg@gmail.com>
parents:
9767
diff
changeset
|
89 { return btyp <= btyp_uint64; } |
a5035bc7fbfb
rewrite dispatch part & slightly improve min,max,cummin,cummax
Jaroslav Hajek <highegg@gmail.com>
parents:
9767
diff
changeset
|
90 |
10087
090173f2db40
improve overload dispatching of built-in classes
Jaroslav Hajek <highegg@gmail.com>
parents:
10075
diff
changeset
|
91 inline bool btyp_isinteger (builtin_type_t btyp) |
090173f2db40
improve overload dispatching of built-in classes
Jaroslav Hajek <highegg@gmail.com>
parents:
10075
diff
changeset
|
92 { return btyp >= btyp_int8 && btyp <= btyp_uint64; } |
090173f2db40
improve overload dispatching of built-in classes
Jaroslav Hajek <highegg@gmail.com>
parents:
10075
diff
changeset
|
93 |
090173f2db40
improve overload dispatching of built-in classes
Jaroslav Hajek <highegg@gmail.com>
parents:
10075
diff
changeset
|
94 inline bool btyp_isfloat (builtin_type_t btyp) |
090173f2db40
improve overload dispatching of built-in classes
Jaroslav Hajek <highegg@gmail.com>
parents:
10075
diff
changeset
|
95 { return btyp <= btyp_float_complex; } |
090173f2db40
improve overload dispatching of built-in classes
Jaroslav Hajek <highegg@gmail.com>
parents:
10075
diff
changeset
|
96 |
090173f2db40
improve overload dispatching of built-in classes
Jaroslav Hajek <highegg@gmail.com>
parents:
10075
diff
changeset
|
97 inline bool btyp_isarray (builtin_type_t btyp) |
090173f2db40
improve overload dispatching of built-in classes
Jaroslav Hajek <highegg@gmail.com>
parents:
10075
diff
changeset
|
98 { return btyp <= btyp_char; } |
090173f2db40
improve overload dispatching of built-in classes
Jaroslav Hajek <highegg@gmail.com>
parents:
10075
diff
changeset
|
99 |
9790
a5035bc7fbfb
rewrite dispatch part & slightly improve min,max,cummin,cummax
Jaroslav Hajek <highegg@gmail.com>
parents:
9767
diff
changeset
|
100 // Compute a numeric type for a possibly mixed-type operation, using these rules: |
a5035bc7fbfb
rewrite dispatch part & slightly improve min,max,cummin,cummax
Jaroslav Hajek <highegg@gmail.com>
parents:
9767
diff
changeset
|
101 // bool -> double |
a5035bc7fbfb
rewrite dispatch part & slightly improve min,max,cummin,cummax
Jaroslav Hajek <highegg@gmail.com>
parents:
9767
diff
changeset
|
102 // single + double -> single |
a5035bc7fbfb
rewrite dispatch part & slightly improve min,max,cummin,cummax
Jaroslav Hajek <highegg@gmail.com>
parents:
9767
diff
changeset
|
103 // real + complex -> complex |
a5035bc7fbfb
rewrite dispatch part & slightly improve min,max,cummin,cummax
Jaroslav Hajek <highegg@gmail.com>
parents:
9767
diff
changeset
|
104 // integer + real -> integer |
a5035bc7fbfb
rewrite dispatch part & slightly improve min,max,cummin,cummax
Jaroslav Hajek <highegg@gmail.com>
parents:
9767
diff
changeset
|
105 // uint + uint -> uint (the bigger one) |
a5035bc7fbfb
rewrite dispatch part & slightly improve min,max,cummin,cummax
Jaroslav Hajek <highegg@gmail.com>
parents:
9767
diff
changeset
|
106 // sint + sint -> sint (the bigger one) |
a5035bc7fbfb
rewrite dispatch part & slightly improve min,max,cummin,cummax
Jaroslav Hajek <highegg@gmail.com>
parents:
9767
diff
changeset
|
107 // |
a5035bc7fbfb
rewrite dispatch part & slightly improve min,max,cummin,cummax
Jaroslav Hajek <highegg@gmail.com>
parents:
9767
diff
changeset
|
108 // failing otherwise. |
a5035bc7fbfb
rewrite dispatch part & slightly improve min,max,cummin,cummax
Jaroslav Hajek <highegg@gmail.com>
parents:
9767
diff
changeset
|
109 |
a5035bc7fbfb
rewrite dispatch part & slightly improve min,max,cummin,cummax
Jaroslav Hajek <highegg@gmail.com>
parents:
9767
diff
changeset
|
110 extern OCTINTERP_API |
a5035bc7fbfb
rewrite dispatch part & slightly improve min,max,cummin,cummax
Jaroslav Hajek <highegg@gmail.com>
parents:
9767
diff
changeset
|
111 builtin_type_t btyp_mixed_numeric (builtin_type_t x, builtin_type_t y); |
a5035bc7fbfb
rewrite dispatch part & slightly improve min,max,cummin,cummax
Jaroslav Hajek <highegg@gmail.com>
parents:
9767
diff
changeset
|
112 |
9685 | 113 template <class T> |
114 struct class_to_btyp | |
115 { | |
116 static const builtin_type_t btyp = btyp_unknown; | |
117 }; | |
118 | |
119 #define DEF_CLASS_TO_BTYP(CLASS,BTYP) \ | |
120 template <> \ | |
121 struct class_to_btyp<CLASS> \ | |
122 { static const builtin_type_t btyp = BTYP; } | |
123 | |
124 DEF_CLASS_TO_BTYP (double, btyp_double); | |
125 DEF_CLASS_TO_BTYP (float, btyp_float); | |
126 DEF_CLASS_TO_BTYP (Complex, btyp_complex); | |
127 DEF_CLASS_TO_BTYP (FloatComplex, btyp_float_complex); | |
128 DEF_CLASS_TO_BTYP (octave_int8, btyp_int8); | |
129 DEF_CLASS_TO_BTYP (octave_int16, btyp_int16); | |
130 DEF_CLASS_TO_BTYP (octave_int32, btyp_int32); | |
131 DEF_CLASS_TO_BTYP (octave_int64, btyp_int64); | |
132 DEF_CLASS_TO_BTYP (octave_uint8, btyp_uint8); | |
133 DEF_CLASS_TO_BTYP (octave_uint16, btyp_uint16); | |
134 DEF_CLASS_TO_BTYP (octave_uint32, btyp_uint32); | |
135 DEF_CLASS_TO_BTYP (octave_uint64, btyp_uint64); | |
136 DEF_CLASS_TO_BTYP (bool, btyp_bool); | |
137 DEF_CLASS_TO_BTYP (char, btyp_char); | |
138 | |
5759 | 139 // T_ID is the type id of struct objects, set by register_type(). |
140 // T_NAME is the type name of struct objects. | |
7067 | 141 |
5759 | 142 #define DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA \ |
7066 | 143 DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA2 (OCTAVE_EMPTY_CPP_ARG) |
5759 | 144 |
145 #define DECLARE_OV_BASE_TYPEID_FUNCTIONS_AND_DATA \ | |
146 DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA2(virtual) | |
147 | |
148 #define DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA2(VIRTUAL) \ | |
149 public: \ | |
150 VIRTUAL int type_id (void) const { return t_id; } \ | |
151 VIRTUAL std::string type_name (void) const { return t_name; } \ | |
152 VIRTUAL std::string class_name (void) const { return c_name; } \ | |
153 static int static_type_id (void) { return t_id; } \ | |
154 static std::string static_type_name (void) { return t_name; } \ | |
155 static std::string static_class_name (void) { return c_name; } \ | |
156 static void register_type (void); \ | |
157 \ | |
158 private: \ | |
159 static int t_id; \ | |
160 static const std::string t_name; \ | |
161 static const std::string c_name; | |
162 | |
163 | |
164 #define DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA(t, n, c) \ | |
165 int t::t_id (-1); \ | |
166 const std::string t::t_name (n); \ | |
167 const std::string t::c_name (c); \ | |
168 void t::register_type (void) \ | |
169 { \ | |
14013
1734ebe27134
move onCleanup function and class to liboctinterp
John W. Eaton <jwe@octave.org>
parents:
13241
diff
changeset
|
170 static t exemplar; \ |
1734ebe27134
move onCleanup function and class to liboctinterp
John W. Eaton <jwe@octave.org>
parents:
13241
diff
changeset
|
171 octave_value v (&exemplar, true); \ |
1734ebe27134
move onCleanup function and class to liboctinterp
John W. Eaton <jwe@octave.org>
parents:
13241
diff
changeset
|
172 t_id = octave_value_typeinfo::register_type (t::t_name, t::c_name, v); \ |
5759 | 173 } |
174 | |
2477 | 175 // A base value type, so that derived types only have to redefine what |
176 // they need (if they are derived from octave_base_value instead of | |
177 // octave_value). | |
2376 | 178 |
179 class | |
6109 | 180 OCTINTERP_API |
5759 | 181 octave_base_value |
2376 | 182 { |
183 public: | |
184 | |
5759 | 185 typedef octave_base_value * (*type_conv_fcn) (const octave_base_value&); |
186 | |
8345
c777f3ce02d8
smarter conversion lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
8150
diff
changeset
|
187 // type conversion, including result type information |
c777f3ce02d8
smarter conversion lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
8150
diff
changeset
|
188 class type_conv_info |
c777f3ce02d8
smarter conversion lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
8150
diff
changeset
|
189 { |
c777f3ce02d8
smarter conversion lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
8150
diff
changeset
|
190 public: |
c777f3ce02d8
smarter conversion lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
8150
diff
changeset
|
191 type_conv_info (type_conv_fcn f = 0, int t = -1) : _fcn (f), _type_id (t) { } |
c777f3ce02d8
smarter conversion lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
8150
diff
changeset
|
192 |
c777f3ce02d8
smarter conversion lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
8150
diff
changeset
|
193 operator type_conv_fcn (void) const { return _fcn; } |
c777f3ce02d8
smarter conversion lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
8150
diff
changeset
|
194 |
11586
12df7854fa7c
strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
195 octave_base_value * operator () (const octave_base_value &v) const |
8345
c777f3ce02d8
smarter conversion lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
8150
diff
changeset
|
196 { return (*_fcn) (v); } |
c777f3ce02d8
smarter conversion lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
8150
diff
changeset
|
197 |
c777f3ce02d8
smarter conversion lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
8150
diff
changeset
|
198 int type_id (void) const { return _type_id; } |
c777f3ce02d8
smarter conversion lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
8150
diff
changeset
|
199 |
c777f3ce02d8
smarter conversion lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
8150
diff
changeset
|
200 private: |
c777f3ce02d8
smarter conversion lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
8150
diff
changeset
|
201 type_conv_fcn _fcn; |
c777f3ce02d8
smarter conversion lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
8150
diff
changeset
|
202 int _type_id; |
c777f3ce02d8
smarter conversion lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
8150
diff
changeset
|
203 }; |
c777f3ce02d8
smarter conversion lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
8150
diff
changeset
|
204 |
5759 | 205 friend class octave_value; |
2376 | 206 |
5759 | 207 octave_base_value (void) : count (1) { } |
208 | |
9521 | 209 octave_base_value (const octave_base_value&) : count (1) { } |
2376 | 210 |
5759 | 211 virtual ~octave_base_value (void) { } |
212 | |
9521 | 213 // Unconditional clone. Always clones. |
5759 | 214 virtual octave_base_value * |
215 clone (void) const { return new octave_base_value (*this); } | |
2376 | 216 |
9521 | 217 // Empty clone. |
5759 | 218 virtual octave_base_value * |
10544
9961fc022d9d
fix assignment to non-existing variables and octave_value::assign
Jaroslav Hajek <highegg@gmail.com>
parents:
10521
diff
changeset
|
219 empty_clone (void) const; |
2376 | 220 |
9521 | 221 // Unique clone. Usually clones, but may be overriden to fake the |
222 // cloning when sharing copies is to be controlled from within an | |
223 // instance (see octave_class). | |
224 virtual octave_base_value * | |
225 unique_clone (void) { return clone (); } | |
226 | |
8345
c777f3ce02d8
smarter conversion lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
8150
diff
changeset
|
227 virtual type_conv_info |
5759 | 228 numeric_conversion_function (void) const |
8345
c777f3ce02d8
smarter conversion lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
8150
diff
changeset
|
229 { return type_conv_info (); } |
2410 | 230 |
8345
c777f3ce02d8
smarter conversion lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
8150
diff
changeset
|
231 virtual type_conv_info |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
232 numeric_demotion_function (void) const |
8345
c777f3ce02d8
smarter conversion lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
8150
diff
changeset
|
233 { return type_conv_info (); } |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
234 |
5759 | 235 virtual octave_value squeeze (void) const; |
236 | |
8458
d254a21e0120
reimplement full as method of octave_base_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8437
diff
changeset
|
237 virtual octave_value full_value (void) const; |
d254a21e0120
reimplement full as method of octave_base_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8437
diff
changeset
|
238 |
5759 | 239 virtual octave_base_value *try_narrowing_conversion (void) { return 0; } |
4532 | 240 |
8523
ad3afaaa19c1
implement non-copying contiguous range indexing
Jaroslav Hajek <highegg@gmail.com>
parents:
8458
diff
changeset
|
241 virtual void maybe_economize (void) { } |
ad3afaaa19c1
implement non-copying contiguous range indexing
Jaroslav Hajek <highegg@gmail.com>
parents:
8458
diff
changeset
|
242 |
11586
12df7854fa7c
strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
243 virtual Matrix size (void); |
9329
67fc970dad7d
improve indexed assignment using indexed numel
Jaroslav Hajek <highegg@gmail.com>
parents:
9182
diff
changeset
|
244 |
67fc970dad7d
improve indexed assignment using indexed numel
Jaroslav Hajek <highegg@gmail.com>
parents:
9182
diff
changeset
|
245 virtual octave_idx_type numel (const octave_value_list&); |
67fc970dad7d
improve indexed assignment using indexed numel
Jaroslav Hajek <highegg@gmail.com>
parents:
9182
diff
changeset
|
246 |
5759 | 247 virtual octave_value |
248 subsref (const std::string& type, | |
10313 | 249 const std::list<octave_value_list>& idx); |
3933 | 250 |
5759 | 251 virtual octave_value_list |
252 subsref (const std::string& type, | |
10313 | 253 const std::list<octave_value_list>& idx, |
254 int nargout); | |
3933 | 255 |
5759 | 256 virtual octave_value |
8551
906f976d35a8
further improve struct&cell indexing & indexed assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
8523
diff
changeset
|
257 subsref (const std::string& type, |
10313 | 258 const std::list<octave_value_list>& idx, |
8551
906f976d35a8
further improve struct&cell indexing & indexed assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
8523
diff
changeset
|
259 bool auto_add); |
906f976d35a8
further improve struct&cell indexing & indexed assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
8523
diff
changeset
|
260 |
10832
1b2fcd122c6a
allow user detect ignored outputs in m-functions
Jaroslav Hajek <highegg@gmail.com>
parents:
10768
diff
changeset
|
261 virtual octave_value_list |
1b2fcd122c6a
allow user detect ignored outputs in m-functions
Jaroslav Hajek <highegg@gmail.com>
parents:
10768
diff
changeset
|
262 subsref (const std::string& type, |
1b2fcd122c6a
allow user detect ignored outputs in m-functions
Jaroslav Hajek <highegg@gmail.com>
parents:
10768
diff
changeset
|
263 const std::list<octave_value_list>& idx, |
1b2fcd122c6a
allow user detect ignored outputs in m-functions
Jaroslav Hajek <highegg@gmail.com>
parents:
10768
diff
changeset
|
264 int nargout, |
1b2fcd122c6a
allow user detect ignored outputs in m-functions
Jaroslav Hajek <highegg@gmail.com>
parents:
10768
diff
changeset
|
265 const std::list<octave_lvalue> *lvalue_list); |
1b2fcd122c6a
allow user detect ignored outputs in m-functions
Jaroslav Hajek <highegg@gmail.com>
parents:
10768
diff
changeset
|
266 |
8551
906f976d35a8
further improve struct&cell indexing & indexed assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
8523
diff
changeset
|
267 virtual octave_value |
5885 | 268 do_index_op (const octave_value_list& idx, bool resize_ok = false); |
2974 | 269 |
5759 | 270 virtual octave_value_list |
3544 | 271 do_multi_index_op (int nargout, const octave_value_list& idx); |
2376 | 272 |
10832
1b2fcd122c6a
allow user detect ignored outputs in m-functions
Jaroslav Hajek <highegg@gmail.com>
parents:
10768
diff
changeset
|
273 virtual octave_value_list |
1b2fcd122c6a
allow user detect ignored outputs in m-functions
Jaroslav Hajek <highegg@gmail.com>
parents:
10768
diff
changeset
|
274 do_multi_index_op (int nargout, const octave_value_list& idx, |
1b2fcd122c6a
allow user detect ignored outputs in m-functions
Jaroslav Hajek <highegg@gmail.com>
parents:
10768
diff
changeset
|
275 const std::list<octave_lvalue> *lvalue_list); |
1b2fcd122c6a
allow user detect ignored outputs in m-functions
Jaroslav Hajek <highegg@gmail.com>
parents:
10768
diff
changeset
|
276 |
9147
5579998f8acf
Update to OOP facilities.
rtshort@bristlecone.phaselocked.com
parents:
9010
diff
changeset
|
277 virtual void assign (const std::string&, const octave_value&) { } |
5579998f8acf
Update to OOP facilities.
rtshort@bristlecone.phaselocked.com
parents:
9010
diff
changeset
|
278 |
5759 | 279 virtual octave_value |
280 subsasgn (const std::string& type, | |
10313 | 281 const std::list<octave_value_list>& idx, |
282 const octave_value& rhs); | |
2376 | 283 |
12171
d08901c05c1b
fix bug in class assignment to undefined object with index
John W. Eaton <jwe@octave.org>
parents:
12125
diff
changeset
|
284 virtual octave_value |
d08901c05c1b
fix bug in class assignment to undefined object with index
John W. Eaton <jwe@octave.org>
parents:
12125
diff
changeset
|
285 undef_subsasgn (const std::string& type, |
d08901c05c1b
fix bug in class assignment to undefined object with index
John W. Eaton <jwe@octave.org>
parents:
12125
diff
changeset
|
286 const std::list<octave_value_list>& idx, |
d08901c05c1b
fix bug in class assignment to undefined object with index
John W. Eaton <jwe@octave.org>
parents:
12125
diff
changeset
|
287 const octave_value& rhs); |
d08901c05c1b
fix bug in class assignment to undefined object with index
John W. Eaton <jwe@octave.org>
parents:
12125
diff
changeset
|
288 |
5759 | 289 virtual idx_vector index_vector (void) const; |
2376 | 290 |
10181
a668fbd32e34
improve cellfun & avoid undefined values from builtins
Jaroslav Hajek <highegg@gmail.com>
parents:
10160
diff
changeset
|
291 virtual dim_vector dims (void) const { return dim_vector (); } |
4559 | 292 |
5759 | 293 octave_idx_type rows (void) const |
294 { | |
10651
944b78191f03
simplify octave_base_value::rows and columns
Jaroslav Hajek <highegg@gmail.com>
parents:
10612
diff
changeset
|
295 const dim_vector dv = dims (); |
5164 | 296 |
10651
944b78191f03
simplify octave_base_value::rows and columns
Jaroslav Hajek <highegg@gmail.com>
parents:
10612
diff
changeset
|
297 return dv(0); |
5759 | 298 } |
4791 | 299 |
5759 | 300 octave_idx_type columns (void) const |
301 { | |
10651
944b78191f03
simplify octave_base_value::rows and columns
Jaroslav Hajek <highegg@gmail.com>
parents:
10612
diff
changeset
|
302 const dim_vector dv = dims (); |
5602 | 303 |
10651
944b78191f03
simplify octave_base_value::rows and columns
Jaroslav Hajek <highegg@gmail.com>
parents:
10612
diff
changeset
|
304 return dv(1); |
5759 | 305 } |
5604 | 306 |
10652
2f0fbfa4dd23
simplify octave_base_value::ndims
Jaroslav Hajek <highegg@gmail.com>
parents:
10651
diff
changeset
|
307 virtual int ndims (void) const |
2f0fbfa4dd23
simplify octave_base_value::ndims
Jaroslav Hajek <highegg@gmail.com>
parents:
10651
diff
changeset
|
308 { return dims ().length (); } |
4567 | 309 |
5759 | 310 virtual octave_idx_type numel (void) const { return dims ().numel (); } |
4593 | 311 |
5759 | 312 virtual octave_idx_type capacity (void) const { return numel (); } |
313 | |
314 virtual size_t byte_size (void) const { return 0; } | |
4915 | 315 |
5759 | 316 virtual octave_idx_type nnz (void) const; |
2376 | 317 |
5759 | 318 virtual octave_idx_type nzmax (void) const; |
319 | |
5900 | 320 virtual octave_idx_type nfields (void) const; |
321 | |
5759 | 322 virtual octave_value reshape (const dim_vector&) const; |
3351 | 323 |
5759 | 324 virtual octave_value permute (const Array<int>& vec, bool = false) const; |
2376 | 325 |
5759 | 326 virtual octave_value resize (const dim_vector&, bool fill = false) const; |
2376 | 327 |
5785 | 328 virtual MatrixType matrix_type (void) const; |
329 | |
330 virtual MatrixType matrix_type (const MatrixType& typ) const; | |
331 | |
5759 | 332 virtual bool is_defined (void) const { return false; } |
4505 | 333 |
5759 | 334 bool is_empty (void) const { return numel () == 0; } |
2376 | 335 |
5759 | 336 virtual bool is_cell (void) const { return false; } |
2376 | 337 |
6116 | 338 virtual bool is_cellstr (void) const { return false; } |
339 | |
5759 | 340 virtual bool is_real_scalar (void) const { return false; } |
4587 | 341 |
5759 | 342 virtual bool is_real_matrix (void) const { return false; } |
343 | |
344 virtual bool is_complex_scalar (void) const { return false; } | |
2376 | 345 |
5759 | 346 virtual bool is_complex_matrix (void) const { return false; } |
347 | |
5881 | 348 virtual bool is_bool_scalar (void) const { return false; } |
349 | |
5759 | 350 virtual bool is_bool_matrix (void) const { return false; } |
5279 | 351 |
5759 | 352 virtual bool is_char_matrix (void) const { return false; } |
2376 | 353 |
8366
8b1a2555c4e2
implement diagonal matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8345
diff
changeset
|
354 virtual bool is_diag_matrix (void) const { return false; } |
8b1a2555c4e2
implement diagonal matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8345
diff
changeset
|
355 |
8371
c3f7e2549abb
make det & inv aware of diagonal & permutation matrices
Jaroslav Hajek <highegg@gmail.com>
parents:
8366
diff
changeset
|
356 virtual bool is_perm_matrix (void) const { return false; } |
c3f7e2549abb
make det & inv aware of diagonal & permutation matrices
Jaroslav Hajek <highegg@gmail.com>
parents:
8366
diff
changeset
|
357 |
5759 | 358 virtual bool is_string (void) const { return false; } |
2376 | 359 |
5759 | 360 virtual bool is_sq_string (void) const { return false; } |
4643 | 361 |
5759 | 362 virtual bool is_range (void) const { return false; } |
3977 | 363 |
5759 | 364 virtual bool is_map (void) const { return false; } |
365 | |
7336 | 366 virtual bool is_object (void) const { return false; } |
367 | |
5759 | 368 virtual bool is_cs_list (void) const { return false; } |
2376 | 369 |
5759 | 370 virtual bool is_magic_colon (void) const { return false; } |
2376 | 371 |
5759 | 372 virtual bool is_all_va_args (void) const { return false; } |
2376 | 373 |
5759 | 374 virtual octave_value all (int = 0) const; |
375 | |
376 virtual octave_value any (int = 0) const; | |
2376 | 377 |
9685 | 378 virtual builtin_type_t builtin_type (void) const { return btyp_unknown; } |
379 | |
5895 | 380 virtual bool is_double_type (void) const { return false; } |
381 | |
382 virtual bool is_single_type (void) const { return false; } | |
383 | |
7576 | 384 virtual bool is_float_type (void) const { return false; } |
385 | |
5895 | 386 virtual bool is_int8_type (void) const { return false; } |
387 | |
388 virtual bool is_int16_type (void) const { return false; } | |
389 | |
390 virtual bool is_int32_type (void) const { return false; } | |
391 | |
392 virtual bool is_int64_type (void) const { return false; } | |
393 | |
394 virtual bool is_uint8_type (void) const { return false; } | |
395 | |
396 virtual bool is_uint16_type (void) const { return false; } | |
397 | |
398 virtual bool is_uint32_type (void) const { return false; } | |
399 | |
400 virtual bool is_uint64_type (void) const { return false; } | |
401 | |
5759 | 402 virtual bool is_bool_type (void) const { return false; } |
3209 | 403 |
6223 | 404 virtual bool is_integer_type (void) const { return false; } |
405 | |
5759 | 406 virtual bool is_real_type (void) const { return false; } |
2376 | 407 |
5759 | 408 virtual bool is_complex_type (void) const { return false; } |
2376 | 409 |
410 // Would be nice to get rid of the next four functions: | |
411 | |
5759 | 412 virtual bool is_scalar_type (void) const { return false; } |
2376 | 413 |
5759 | 414 virtual bool is_matrix_type (void) const { return false; } |
2376 | 415 |
5759 | 416 virtual bool is_numeric_type (void) const { return false; } |
2376 | 417 |
5759 | 418 virtual bool is_sparse_type (void) const { return false; } |
5631 | 419 |
5759 | 420 virtual bool is_true (void) const { return false; } |
421 | |
8150
283989f2da9b
make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents:
7885
diff
changeset
|
422 virtual bool is_null_value (void) const { return false; } |
283989f2da9b
make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents:
7885
diff
changeset
|
423 |
5759 | 424 virtual bool is_constant (void) const { return false; } |
2376 | 425 |
5759 | 426 virtual bool is_function_handle (void) const { return false; } |
2376 | 427 |
13241
2a8dcb5b3a00
improve default indexing for objects
John W. Eaton <jwe@octave.org>
parents:
12171
diff
changeset
|
428 virtual bool is_anonymous_function (void) const { return false; } |
2a8dcb5b3a00
improve default indexing for objects
John W. Eaton <jwe@octave.org>
parents:
12171
diff
changeset
|
429 |
5759 | 430 virtual bool is_inline_function (void) const { return false; } |
2974 | 431 |
5759 | 432 virtual bool is_function (void) const { return false; } |
4954 | 433 |
7336 | 434 virtual bool is_user_script (void) const { return false; } |
435 | |
436 virtual bool is_user_function (void) const { return false; } | |
437 | |
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
|
438 virtual bool is_user_code (void) const { return false; } |
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
|
439 |
5759 | 440 virtual bool is_builtin_function (void) const { return false; } |
2974 | 441 |
5759 | 442 virtual bool is_dld_function (void) const { return false; } |
3325 | 443 |
5864 | 444 virtual bool is_mex_function (void) const { return false; } |
445 | |
7876
8447a5024650
clear subfunctions when clearing parent function
John W. Eaton <jwe@octave.org>
parents:
7789
diff
changeset
|
446 virtual void erase_subfunctions (void) { } |
8447a5024650
clear subfunctions when clearing parent function
John W. Eaton <jwe@octave.org>
parents:
7789
diff
changeset
|
447 |
5759 | 448 virtual short int short_value (bool = false, bool = false) const; |
4254 | 449 |
5759 | 450 virtual unsigned short int ushort_value (bool = false, bool = false) const; |
4254 | 451 |
5759 | 452 virtual int int_value (bool = false, bool = false) const; |
3202 | 453 |
5759 | 454 virtual unsigned int uint_value (bool = false, bool = false) const; |
4254 | 455 |
5759 | 456 virtual int nint_value (bool = false) const; |
3202 | 457 |
5759 | 458 virtual long int long_value (bool = false, bool = false) const; |
4254 | 459 |
5759 | 460 virtual unsigned long int ulong_value (bool = false, bool = false) const; |
4254 | 461 |
5759 | 462 virtual double double_value (bool = false) const; |
2376 | 463 |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
464 virtual float float_value (bool = false) const; |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
465 |
5759 | 466 virtual double scalar_value (bool frc_str_conv = false) const |
3145 | 467 { return double_value (frc_str_conv); } |
2376 | 468 |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
469 virtual 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
|
470 { return float_value (frc_str_conv); } |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
471 |
5759 | 472 virtual Cell cell_value (void) const; |
3351 | 473 |
5759 | 474 virtual Matrix matrix_value (bool = false) const; |
3145 | 475 |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
476 virtual FloatMatrix float_matrix_value (bool = false) const; |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
477 |
5759 | 478 virtual NDArray array_value (bool = false) const; |
4505 | 479 |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
480 virtual FloatNDArray float_array_value (bool = false) const; |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
481 |
5759 | 482 virtual Complex complex_value (bool = false) const; |
2376 | 483 |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
484 virtual FloatComplex float_complex_value (bool = false) const; |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
485 |
5759 | 486 virtual ComplexMatrix complex_matrix_value (bool = false) const; |
2376 | 487 |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
488 virtual FloatComplexMatrix float_complex_matrix_value (bool = false) const; |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
489 |
5759 | 490 virtual ComplexNDArray complex_array_value (bool = false) const; |
4550 | 491 |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
492 virtual FloatComplexNDArray float_complex_array_value (bool = false) const; |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7761
diff
changeset
|
493 |
5943 | 494 virtual bool bool_value (bool = false) const; |
4550 | 495 |
5943 | 496 virtual boolMatrix bool_matrix_value (bool = false) const; |
4550 | 497 |
5943 | 498 virtual boolNDArray bool_array_value (bool = false) const; |
4550 | 499 |
5759 | 500 virtual charMatrix char_matrix_value (bool force = false) const; |
501 | |
502 virtual charNDArray char_array_value (bool = false) const; | |
2376 | 503 |
5759 | 504 virtual SparseMatrix sparse_matrix_value (bool = false) const; |
4550 | 505 |
5759 | 506 virtual SparseComplexMatrix sparse_complex_matrix_value (bool = false) const; |
5164 | 507 |
5759 | 508 virtual SparseBoolMatrix sparse_bool_matrix_value (bool = false) const; |
5164 | 509 |
8916
a2878ba31a9e
add diag & perm matrix query methods to octave_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8734
diff
changeset
|
510 virtual DiagMatrix diag_matrix_value (bool = false) const; |
a2878ba31a9e
add diag & perm matrix query methods to octave_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8734
diff
changeset
|
511 |
a2878ba31a9e
add diag & perm matrix query methods to octave_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8734
diff
changeset
|
512 virtual FloatDiagMatrix float_diag_matrix_value (bool = false) const; |
11586
12df7854fa7c
strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
513 |
8916
a2878ba31a9e
add diag & perm matrix query methods to octave_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8734
diff
changeset
|
514 virtual ComplexDiagMatrix complex_diag_matrix_value (bool = false) const; |
11586
12df7854fa7c
strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
515 |
8916
a2878ba31a9e
add diag & perm matrix query methods to octave_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8734
diff
changeset
|
516 virtual FloatComplexDiagMatrix float_complex_diag_matrix_value (bool = false) const; |
11586
12df7854fa7c
strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
517 |
8916
a2878ba31a9e
add diag & perm matrix query methods to octave_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8734
diff
changeset
|
518 virtual PermMatrix perm_matrix_value (void) const; |
a2878ba31a9e
add diag & perm matrix query methods to octave_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8734
diff
changeset
|
519 |
5759 | 520 virtual octave_int8 int8_scalar_value (void) const; |
5164 | 521 |
5759 | 522 virtual octave_int16 int16_scalar_value (void) const; |
4910 | 523 |
5759 | 524 virtual octave_int32 int32_scalar_value (void) const; |
525 | |
526 virtual octave_int64 int64_scalar_value (void) const; | |
4910 | 527 |
5759 | 528 virtual octave_uint8 uint8_scalar_value (void) const; |
4910 | 529 |
5759 | 530 virtual octave_uint16 uint16_scalar_value (void) const; |
4910 | 531 |
5759 | 532 virtual octave_uint32 uint32_scalar_value (void) const; |
4910 | 533 |
5759 | 534 virtual octave_uint64 uint64_scalar_value (void) const; |
4910 | 535 |
5759 | 536 virtual int8NDArray int8_array_value (void) const; |
4910 | 537 |
5759 | 538 virtual int16NDArray int16_array_value (void) const; |
4910 | 539 |
5759 | 540 virtual int32NDArray int32_array_value (void) const; |
4906 | 541 |
5759 | 542 virtual int64NDArray int64_array_value (void) const; |
4906 | 543 |
5759 | 544 virtual uint8NDArray uint8_array_value (void) const; |
4906 | 545 |
5759 | 546 virtual uint16NDArray uint16_array_value (void) const; |
4906 | 547 |
5759 | 548 virtual uint32NDArray uint32_array_value (void) const; |
4906 | 549 |
5759 | 550 virtual uint64NDArray uint64_array_value (void) const; |
4906 | 551 |
5759 | 552 virtual string_vector all_strings (bool pad = false) const; |
4906 | 553 |
5759 | 554 virtual std::string string_value (bool force = false) const; |
4906 | 555 |
8732 | 556 virtual Array<std::string> cellstr_value (void) const; |
557 | |
5759 | 558 virtual Range range_value (void) const; |
2376 | 559 |
10742
604e13a89c7f
initial code for structs rewrite
Jaroslav Hajek <highegg@gmail.com>
parents:
10670
diff
changeset
|
560 virtual octave_map map_value (void) const; |
604e13a89c7f
initial code for structs rewrite
Jaroslav Hajek <highegg@gmail.com>
parents:
10670
diff
changeset
|
561 |
604e13a89c7f
initial code for structs rewrite
Jaroslav Hajek <highegg@gmail.com>
parents:
10670
diff
changeset
|
562 virtual octave_scalar_map scalar_map_value (void) const; |
604e13a89c7f
initial code for structs rewrite
Jaroslav Hajek <highegg@gmail.com>
parents:
10670
diff
changeset
|
563 |
5759 | 564 virtual string_vector map_keys (void) const; |
2376 | 565 |
9151 | 566 virtual size_t nparents (void) const; |
567 | |
568 virtual std::list<std::string> parent_class_name_list (void) const; | |
569 | |
570 virtual string_vector parent_class_names (void) const; | |
9010
f914834836e7
Partial implementation of derived classes using the old form with "@" files.
rtshort@smoketree.phaselocked.com
parents:
8950
diff
changeset
|
571 |
f914834836e7
Partial implementation of derived classes using the old form with "@" files.
rtshort@smoketree.phaselocked.com
parents:
8950
diff
changeset
|
572 virtual octave_base_value *find_parent_class (const std::string&) |
f914834836e7
Partial implementation of derived classes using the old form with "@" files.
rtshort@smoketree.phaselocked.com
parents:
8950
diff
changeset
|
573 { return 0; } |
f914834836e7
Partial implementation of derived classes using the old form with "@" files.
rtshort@smoketree.phaselocked.com
parents:
8950
diff
changeset
|
574 |
9767
0df32e0b2074
fix base class field assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
9743
diff
changeset
|
575 virtual octave_base_value *unique_parent_class (const std::string&) |
0df32e0b2074
fix base class field assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
9743
diff
changeset
|
576 { return 0; } |
0df32e0b2074
fix base class field assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
9743
diff
changeset
|
577 |
5759 | 578 virtual octave_function *function_value (bool silent = false); |
3933 | 579 |
5759 | 580 virtual octave_user_function *user_function_value (bool silent = false); |
4645 | 581 |
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
|
582 virtual octave_user_script *user_script_value (bool silent = false); |
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
|
583 |
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
|
584 virtual octave_user_code *user_code_value (bool silent = false); |
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
|
585 |
5759 | 586 virtual octave_fcn_handle *fcn_handle_value (bool silent = false); |
4643 | 587 |
5759 | 588 virtual octave_fcn_inline *fcn_inline_value (bool silent = false); |
2974 | 589 |
5759 | 590 virtual octave_value_list list_value (void) const; |
4343 | 591 |
5759 | 592 virtual octave_value convert_to_str (bool pad = false, bool force = false, |
10313 | 593 char type = '\'') const; |
5759 | 594 virtual octave_value |
595 convert_to_str_internal (bool pad, bool force, char type) const; | |
4933 | 596 |
5759 | 597 virtual void convert_to_row_or_column_vector (void); |
2882 | 598 |
5759 | 599 virtual bool print_as_scalar (void) const { return false; } |
2376 | 600 |
5759 | 601 virtual void print (std::ostream& os, bool pr_as_read_syntax = false) const; |
2376 | 602 |
5759 | 603 virtual void |
604 print_raw (std::ostream& os, bool pr_as_read_syntax = false) const; | |
4604 | 605 |
5759 | 606 virtual bool |
607 print_name_tag (std::ostream& os, const std::string& name) const; | |
2901 | 608 |
5759 | 609 virtual void |
11586
12df7854fa7c
strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
610 print_with_name (std::ostream& output_buf, const std::string& name, |
10313 | 611 bool print_padding = true); |
2376 | 612 |
5759 | 613 virtual void print_info (std::ostream& os, const std::string& prefix) const; |
3933 | 614 |
6974 | 615 virtual bool save_ascii (std::ostream& os); |
4687 | 616 |
5759 | 617 virtual bool load_ascii (std::istream& is); |
4687 | 618 |
5759 | 619 virtual bool save_binary (std::ostream& os, bool& save_as_floats); |
4687 | 620 |
11586
12df7854fa7c
strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
621 virtual bool load_binary (std::istream& is, bool swap, |
10313 | 622 oct_mach_info::float_format fmt); |
4687 | 623 |
624 #if defined (HAVE_HDF5) | |
5759 | 625 virtual bool |
626 save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats); | |
4687 | 627 |
5759 | 628 virtual bool |
9881
b3089dba88bf
Remove HDF5 cruft for older versions of HDF5
Kacper Kowalik
parents:
9835
diff
changeset
|
629 load_hdf5 (hid_t loc_id, const char *name); |
4687 | 630 #endif |
631 | |
5759 | 632 virtual int |
633 write (octave_stream& os, int block_size, | |
10313 | 634 oct_data_conv::data_type output_type, int skip, |
635 oct_mach_info::float_format flt_fmt) const; | |
5759 | 636 |
5900 | 637 virtual void *mex_get_data (void) const { return 0; } |
638 | |
639 virtual octave_idx_type *mex_get_ir (void) const { return 0; } | |
640 | |
641 virtual octave_idx_type *mex_get_jc (void) const { return 0; } | |
642 | |
643 virtual mxArray *as_mxArray (void) const; | |
644 | |
7620
36594d5bbe13
Move diag function into the octave_value class
David Bateman <dbateman@free.fr>
parents:
7576
diff
changeset
|
645 virtual 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
|
646 |
14557
e8e86ae3abbc
make diag (x, m, n) return a proper diagonal matrix object (bug #36099)
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
647 virtual octave_value diag (octave_idx_type m, octave_idx_type n) const; |
e8e86ae3abbc
make diag (x, m, n) return a proper diagonal matrix object (bug #36099)
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
648 |
11586
12df7854fa7c
strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
649 virtual octave_value sort (octave_idx_type dim = 0, |
10313 | 650 sortmode mode = ASCENDING) const; |
11586
12df7854fa7c
strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
651 virtual octave_value sort (Array<octave_idx_type> &sidx, |
10313 | 652 octave_idx_type dim = 0, |
653 sortmode mode = ASCENDING) const; | |
7433 | 654 |
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
|
655 virtual sortmode is_sorted (sortmode mode = UNSORTED) const; |
8721
e9cb742df9eb
imported patch sort3.diff
Jaroslav Hajek <highegg@gmail.com>
parents:
8676
diff
changeset
|
656 |
8733
3ef774603887
rename all uses of sortrows_idx to sort_rows_idx
John W. Eaton <jwe@octave.org>
parents:
8732
diff
changeset
|
657 virtual Array<octave_idx_type> |
3ef774603887
rename all uses of sortrows_idx to sort_rows_idx
John W. Eaton <jwe@octave.org>
parents:
8732
diff
changeset
|
658 sort_rows_idx (sortmode mode = ASCENDING) const; |
8721
e9cb742df9eb
imported patch sort3.diff
Jaroslav Hajek <highegg@gmail.com>
parents:
8676
diff
changeset
|
659 |
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
|
660 virtual sortmode is_sorted_rows (sortmode mode = UNSORTED) const; |
8721
e9cb742df9eb
imported patch sort3.diff
Jaroslav Hajek <highegg@gmail.com>
parents:
8676
diff
changeset
|
661 |
7489
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7463
diff
changeset
|
662 virtual void lock (void); |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7463
diff
changeset
|
663 |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7463
diff
changeset
|
664 virtual void unlock (void); |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7463
diff
changeset
|
665 |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7463
diff
changeset
|
666 virtual bool islocked (void) const { return false; } |
8e4592e49fa7
don't clear locked functions
John W. Eaton <jwe@octave.org>
parents:
7463
diff
changeset
|
667 |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7740
diff
changeset
|
668 virtual void dump (std::ostream& os) const; |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7740
diff
changeset
|
669 |
9813
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
670 // Standard mappers. Register new ones here. |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
671 enum unary_mapper_t |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
672 { |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
673 umap_abs, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
674 umap_acos, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
675 umap_acosh, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
676 umap_angle, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
677 umap_arg, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
678 umap_asin, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
679 umap_asinh, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
680 umap_atan, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
681 umap_atanh, |
10414
2a8b1db1e2ca
implement built-in cbrt
Jaroslav Hajek <highegg@gmail.com>
parents:
10391
diff
changeset
|
682 umap_cbrt, |
9813
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
683 umap_ceil, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
684 umap_conj, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
685 umap_cos, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
686 umap_cosh, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
687 umap_erf, |
9835
1bb1ed717d2f
implement built-in erfinv
Jaroslav Hajek <highegg@gmail.com>
parents:
9813
diff
changeset
|
688 umap_erfinv, |
14770
cb85e836d035
New function: erfcinv (bug #36607)
Axel Mathéi <axel.mathei@gmail.com>
parents:
14557
diff
changeset
|
689 umap_erfcinv, |
9813
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
690 umap_erfc, |
10391
59e34bcdff13
implement built-in erfcx
Jaroslav Hajek <highegg@gmail.com>
parents:
10313
diff
changeset
|
691 umap_erfcx, |
15696
2fac72a256ce
Add complex erf,erfc,erfcx,erfi,dawson routines from Faddeeva package.
Steven G. Johnson <stevenj@alum.mit.edu>
parents:
15501
diff
changeset
|
692 umap_erfi, |
2fac72a256ce
Add complex erf,erfc,erfcx,erfi,dawson routines from Faddeeva package.
Steven G. Johnson <stevenj@alum.mit.edu>
parents:
15501
diff
changeset
|
693 umap_dawson, |
9813
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
694 umap_exp, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
695 umap_expm1, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
696 umap_finite, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
697 umap_fix, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
698 umap_floor, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
699 umap_gamma, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
700 umap_imag, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
701 umap_isinf, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
702 umap_isna, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
703 umap_isnan, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
704 umap_lgamma, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
705 umap_log, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
706 umap_log2, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
707 umap_log10, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
708 umap_log1p, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
709 umap_real, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
710 umap_round, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
711 umap_roundb, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
712 umap_signum, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
713 umap_sin, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
714 umap_sinh, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
715 umap_sqrt, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
716 umap_tan, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
717 umap_tanh, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
718 umap_xisalnum, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
719 umap_xisalpha, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
720 umap_xisascii, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
721 umap_xiscntrl, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
722 umap_xisdigit, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
723 umap_xisgraph, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
724 umap_xislower, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
725 umap_xisprint, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
726 umap_xispunct, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
727 umap_xisspace, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
728 umap_xisupper, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
729 umap_xisxdigit, |
15487
ecf5be238b4a
provide signbit mapper for real values
John W. Eaton <jwe@octave.org>
parents:
15195
diff
changeset
|
730 umap_xsignbit, |
9813
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
731 umap_xtoascii, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
732 umap_xtolower, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
733 umap_xtoupper, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
734 umap_unknown, |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
735 num_unary_mappers = umap_unknown |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
736 }; |
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
737 |
9812
f80c566bc751
improve unary mapper system
Jaroslav Hajek <highegg@gmail.com>
parents:
9790
diff
changeset
|
738 virtual octave_value map (unary_mapper_t) const; |
7503
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7489
diff
changeset
|
739 |
10670
654fbde5dceb
make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents:
10652
diff
changeset
|
740 // These are fast indexing & assignment shortcuts for extracting |
654fbde5dceb
make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents:
10652
diff
changeset
|
741 // or inserting a single scalar from/to an array. |
654fbde5dceb
make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents:
10652
diff
changeset
|
742 |
654fbde5dceb
make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents:
10652
diff
changeset
|
743 // Extract the n-th element, aka val(n). Result is undefined if val is not an |
654fbde5dceb
make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents:
10652
diff
changeset
|
744 // array type or n is out of range. Never error. |
654fbde5dceb
make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents:
10652
diff
changeset
|
745 virtual octave_value |
654fbde5dceb
make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents:
10652
diff
changeset
|
746 fast_elem_extract (octave_idx_type n) const; |
654fbde5dceb
make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents:
10652
diff
changeset
|
747 |
654fbde5dceb
make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents:
10652
diff
changeset
|
748 // Assign the n-th element, aka val(n) = x. Returns false if val is not an |
654fbde5dceb
make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents:
10652
diff
changeset
|
749 // array type, x is not a matching scalar type, or n is out of range. |
654fbde5dceb
make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents:
10652
diff
changeset
|
750 // Never error. |
654fbde5dceb
make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents:
10652
diff
changeset
|
751 virtual bool |
654fbde5dceb
make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents:
10652
diff
changeset
|
752 fast_elem_insert (octave_idx_type n, const octave_value& x); |
654fbde5dceb
make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents:
10652
diff
changeset
|
753 |
654fbde5dceb
make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents:
10652
diff
changeset
|
754 // This is a helper for the above, to be overriden in scalar types. The |
654fbde5dceb
make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents:
10652
diff
changeset
|
755 // whole point is to handle the insertion efficiently with just *two* VM |
654fbde5dceb
make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents:
10652
diff
changeset
|
756 // calls, which is basically the theoretical minimum. |
654fbde5dceb
make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents:
10652
diff
changeset
|
757 virtual bool |
654fbde5dceb
make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents:
10652
diff
changeset
|
758 fast_elem_insert_self (void *where, builtin_type_t btyp) const; |
654fbde5dceb
make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents:
10652
diff
changeset
|
759 |
14903 | 760 // Grab the reference count. For use by jit. |
761 void | |
762 grab (void) | |
763 { | |
764 ++count; | |
765 } | |
766 | |
767 // Release the reference count. For use by jit. | |
768 void | |
769 release (void) | |
770 { | |
771 if (--count == 0) | |
772 delete this; | |
773 } | |
774 | |
5759 | 775 protected: |
776 | |
777 // This should only be called for derived types. | |
778 | |
779 octave_value numeric_assign (const std::string& type, | |
10313 | 780 const std::list<octave_value_list>& idx, |
781 const octave_value& rhs); | |
5759 | 782 |
783 void reset_indent_level (void) const | |
784 { curr_print_indent_level = 0; } | |
785 | |
786 void increment_indent_level (void) const | |
787 { curr_print_indent_level += 2; } | |
788 | |
789 void decrement_indent_level (void) const | |
790 { curr_print_indent_level -= 2; } | |
791 | |
792 int current_print_indent_level (void) const | |
793 { return curr_print_indent_level; } | |
794 | |
795 void indent (std::ostream& os) const; | |
796 | |
797 void newline (std::ostream& os) const; | |
798 | |
799 void reset (void) const; | |
800 | |
801 // A reference count. | |
9521 | 802 // NOTE: the declaration is octave_idx_type because with 64-bit indexing, |
803 // it is well possible to have more than MAX_INT copies of a single value | |
804 // (think of an empty cell array with >2G elements). | |
12125
a21a3875ca83
implement a common class for reference counts
Jaroslav Hajek <highegg@gmail.com>
parents:
11586
diff
changeset
|
805 octave_refcount<octave_idx_type> count; |
4944 | 806 |
15501
814c4b0d5c49
make numeric mapper functions throw error for char args (bug #37535)
John W. Eaton <jwe@octave.org>
parents:
15487
diff
changeset
|
807 static const char *get_umap_name (unary_mapper_t); |
2376 | 808 |
15501
814c4b0d5c49
make numeric mapper functions throw error for char args (bug #37535)
John W. Eaton <jwe@octave.org>
parents:
15487
diff
changeset
|
809 private: |
9813
8fa32b527d9a
improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents:
9812
diff
changeset
|
810 |
5759 | 811 static int curr_print_indent_level; |
812 static bool beginning_of_line; | |
813 | |
814 DECLARE_OV_BASE_TYPEID_FUNCTIONS_AND_DATA | |
2376 | 815 }; |
816 | |
7193 | 817 // TRUE means to perform automatic sparse to real mutation if there |
818 // is memory to be saved | |
10612
09e244649f50
Export symbol Vsparse_auto_mutate
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10544
diff
changeset
|
819 extern OCTINTERP_API bool Vsparse_auto_mutate; |
7193 | 820 |
2376 | 821 #endif |