GNU Octave 10.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 
Loading...
Searching...
No Matches
ov-float.h
Go to the documentation of this file.
1////////////////////////////////////////////////////////////////////////
2//
3// Copyright (C) 1996-2025 The Octave Project Developers
4//
5// See the file COPYRIGHT.md in the top-level directory of this
6// distribution or <https://octave.org/copyright/>.
7//
8// This file is part of Octave.
9//
10// Octave is free software: you can redistribute it and/or modify it
11// under the terms of the GNU General Public License as published by
12// the Free Software Foundation, either version 3 of the License, or
13// (at your option) any later version.
14//
15// Octave is distributed in the hope that it will be useful, but
16// WITHOUT ANY WARRANTY; without even the implied warranty of
17// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18// GNU General Public License for more details.
19//
20// You should have received a copy of the GNU General Public License
21// along with Octave; see the file COPYING. If not, see
22// <https://www.gnu.org/licenses/>.
23//
24////////////////////////////////////////////////////////////////////////
25
26#if ! defined (octave_ov_float_h)
27#define octave_ov_float_h 1
28
29#include "octave-config.h"
30
31#include <cstdlib>
32
33#include <iosfwd>
34#include <string>
35
36#include "lo-mappers.h"
37#include "lo-utils.h"
38#include "mx-base.h"
39#include "str-vec.h"
40
41#include "errwarn.h"
42#include "ov-base.h"
43#include "ov-re-mat.h"
44#include "ov-flt-re-mat.h"
45#include "ov-base-scalar.h"
46#include "ov-typeinfo.h"
47
49
50// Real scalar values.
51
52extern template class OCTINTERP_EXTERN_TEMPLATE_API octave_base_scalar<float>;
53
55{
56public:
57
60
63
66
68
70 { return new octave_float_scalar (*this); }
71
72 // We return an octave_matrix here instead of an octave_float_scalar so
73 // that in expressions like A(2,2,2) = 2 (for A previously
74 // undefined), A will be empty instead of a 1x1 object.
76 { return new octave_float_matrix (); }
77
78 octave_value do_index_op (const octave_value_list& idx,
79 bool resize_ok = false);
80
81 octave::idx_vector index_vector (bool /* require_integers */ = false) const
82 { return octave::idx_vector (scalar); }
83
84 octave_value any (int = 0) const
85 { return (scalar != 0 && ! octave::math::isnan (scalar)); }
86
88
89 bool is_real_scalar () const { return true; }
90
91 bool isreal () const { return true; }
92
93 bool is_single_type () const { return true; }
94
95 bool isfloat () const { return true; }
96
99 { return int8NDArray (dim_vector (1, 1), scalar); }
100
103 { return int16NDArray (dim_vector (1, 1), scalar); }
104
107 { return int32NDArray (dim_vector (1, 1), scalar); }
108
111 { return int64NDArray (dim_vector (1, 1), scalar); }
112
115 { return uint8NDArray (dim_vector (1, 1), scalar); }
116
119 { return uint16NDArray (dim_vector (1, 1), scalar); }
120
123 { return uint32NDArray (dim_vector (1, 1), scalar); }
124
127 { return uint64NDArray (dim_vector (1, 1), scalar); }
128
129#define DEFINE_INT_SCALAR_VALUE(TYPE) \
130 octave_ ## TYPE \
131 TYPE ## _scalar_value () const \
132 { \
133 return octave_ ## TYPE (scalar); \
134 }
135
144
145#undef DEFINE_INT_SCALAR_VALUE
146
147 double double_value (bool = false) const
148 { return static_cast<double> (scalar); }
149
150 float float_value (bool = false) const { return scalar; }
151
152 double scalar_value (bool = false) const
153 { return static_cast<double> (scalar); }
154
155 float float_scalar_value (bool = false) const { return scalar; }
156
157 Matrix matrix_value (bool = false) const
158 { return Matrix (1, 1, scalar); }
159
160 FloatMatrix float_matrix_value (bool = false) const
161 { return FloatMatrix (1, 1, scalar); }
162
163 NDArray array_value (bool = false) const
164 { return NDArray (dim_vector (1, 1), scalar); }
165
166 FloatNDArray float_array_value (bool = false) const
167 { return FloatNDArray (dim_vector (1, 1), scalar); }
168
170 { return SparseMatrix (Matrix (1, 1, scalar)); }
171
172 // FIXME: Need SparseComplexMatrix (Matrix) constructor!
174 { return SparseComplexMatrix (sparse_matrix_value ()); }
175
176 octave_value resize (const dim_vector& dv, bool fill = false) const;
177
178 Complex complex_value (bool = false) const { return scalar; }
179
180 FloatComplex float_complex_value (bool = false) const { return scalar; }
181
183 { return ComplexMatrix (1, 1, Complex (scalar)); }
184
186 { return FloatComplexMatrix (1, 1, FloatComplex (scalar)); }
187
189 { return ComplexNDArray (dim_vector (1, 1), Complex (scalar)); }
190
192 { return FloatComplexNDArray (dim_vector (1, 1), FloatComplex (scalar)); }
193
195 char_array_value (bool = false) const
196 {
197 charNDArray retval (dim_vector (1, 1));
198 retval(0) = static_cast<char> (scalar);
199 return retval;
200 }
201
202 bool bool_value (bool warn = false) const
203 {
204 if (octave::math::isnan (scalar))
205 octave::err_nan_to_logical_conversion ();
206 if (warn && scalar != 0 && scalar != 1)
208
209 return scalar;
210 }
211
212 boolNDArray bool_array_value (bool warn = false) const
213 {
214 if (octave::math::isnan (scalar))
215 octave::err_nan_to_logical_conversion ();
216 if (warn && scalar != 0 && scalar != 1)
218
219 return boolNDArray (dim_vector (1, 1), scalar);
220 }
221
222 octave_value as_double () const;
223 octave_value as_single () const;
224
225 octave_value as_int8 () const;
226 octave_value as_int16 () const;
227 octave_value as_int32 () const;
228 octave_value as_int64 () const;
229
230 octave_value as_uint8 () const;
231 octave_value as_uint16 () const;
232 octave_value as_uint32 () const;
233 octave_value as_uint64 () const;
234
235 // We don't need to override both forms of the diag method. The using
236 // declaration will avoid warnings about partially-overloaded virtual
237 // functions.
238 using octave_base_scalar<float>::diag;
239
241
242 octave_value convert_to_str_internal (bool pad, bool force, char type) const;
243
244 void increment () { ++scalar; }
245
246 void decrement () { --scalar; }
247
248 bool save_ascii (std::ostream& os);
249
250 bool load_ascii (std::istream& is);
251
252 bool save_binary (std::ostream& os, bool save_as_floats);
253
254 bool load_binary (std::istream& is, bool swap,
255 octave::mach_info::float_format fmt);
256
257 bool save_hdf5 (octave_hdf5_id loc_id, const char *name, bool save_as_floats);
258
259 bool load_hdf5 (octave_hdf5_id loc_id, const char *name);
260
261 int write (octave::stream& os, int block_size,
262 oct_data_conv::data_type output_type, int skip,
263 octave::mach_info::float_format flt_fmt) const
264 {
265 return os.write (array_value (), block_size, output_type,
266 skip, flt_fmt);
267 }
268
269 mxArray * as_mxArray (bool interleaved) const;
270
271 octave_value map (unary_mapper_t umap) const;
272
273 bool fast_elem_insert_self (void *where, builtin_type_t btyp) const;
274
275private:
276
278};
279
280#endif
Vector representing the dimensions (size) of an Array.
Definition dim-vector.h:90
float float_scalar_value(bool=false) const
Definition ov-float.h:155
SparseComplexMatrix sparse_complex_matrix_value(bool=false) const
Definition ov-float.h:173
octave::idx_vector index_vector(bool=false) const
Definition ov-float.h:81
octave_base_value * clone() const
Definition ov-float.h:69
bool isreal() const
Definition ov-float.h:91
NDArray array_value(bool=false) const
Definition ov-float.h:163
int16NDArray int16_array_value() const
Definition ov-float.h:102
charNDArray char_array_value(bool=false) const
Definition ov-float.h:195
uint16NDArray uint16_array_value() const
Definition ov-float.h:118
int8NDArray int8_array_value() const
Definition ov-float.h:98
int64NDArray int64_array_value() const
Definition ov-float.h:110
FloatComplexNDArray float_complex_array_value(bool=false) const
Definition ov-float.h:191
octave_float_scalar(const octave_float_scalar &s)
Definition ov-float.h:64
octave_float_scalar(float d)
Definition ov-float.h:61
bool is_single_type() const
Definition ov-float.h:93
FloatNDArray float_array_value(bool=false) const
Definition ov-float.h:166
int32NDArray int32_array_value() const
Definition ov-float.h:106
int write(octave::stream &os, int block_size, oct_data_conv::data_type output_type, int skip, octave::mach_info::float_format flt_fmt) const
Definition ov-float.h:261
float float_value(bool=false) const
Definition ov-float.h:150
uint64NDArray uint64_array_value() const
Definition ov-float.h:126
builtin_type_t builtin_type() const
Definition ov-float.h:87
octave_base_value * empty_clone() const
Definition ov-float.h:75
FloatComplexMatrix float_complex_matrix_value(bool=false) const
Definition ov-float.h:185
double double_value(bool=false) const
Definition ov-float.h:147
bool isfloat() const
Definition ov-float.h:95
boolNDArray bool_array_value(bool warn=false) const
Definition ov-float.h:212
FloatMatrix float_matrix_value(bool=false) const
Definition ov-float.h:160
FloatComplex float_complex_value(bool=false) const
Definition ov-float.h:180
double scalar_value(bool=false) const
Definition ov-float.h:152
bool bool_value(bool warn=false) const
Definition ov-float.h:202
bool is_real_scalar() const
Definition ov-float.h:89
octave_value any(int=0) const
Definition ov-float.h:84
~octave_float_scalar()=default
uint8NDArray uint8_array_value() const
Definition ov-float.h:114
Complex complex_value(bool=false) const
Definition ov-float.h:178
ComplexNDArray complex_array_value(bool=false) const
Definition ov-float.h:188
SparseMatrix sparse_matrix_value(bool=false) const
Definition ov-float.h:169
ComplexMatrix complex_matrix_value(bool=false) const
Definition ov-float.h:182
Matrix matrix_value(bool=false) const
Definition ov-float.h:157
uint32NDArray uint32_array_value() const
Definition ov-float.h:122
void resize(octave_idx_type n, const octave_value &rfv=octave_value())
Definition ovl.h:115
Array< octave_value > array_value() const
Definition ovl.h:88
void warn_logical_conversion()
Definition errwarn.cc:365
intNDArray< octave_int16 > int16NDArray
intNDArray< octave_int32 > int32NDArray
intNDArray< octave_int64 > int64NDArray
intNDArray< octave_int8 > int8NDArray
Definition int8NDArray.h:36
F77_RET_T const F77_DBLE const F77_DBLE F77_DBLE * d
std::complex< double > Complex
Definition oct-cmplx.h:33
std::complex< float > FloatComplex
Definition oct-cmplx.h:34
int64_t octave_hdf5_id
#define DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA_API(API)
Definition ov-base.h:185
builtin_type_t
Definition ov-base.h:83
@ btyp_float
Definition ov-base.h:85
#define DEFINE_INT_SCALAR_VALUE(TYPE)
Definition ov-float.h:129
intNDArray< octave_uint16 > uint16NDArray
intNDArray< octave_uint32 > uint32NDArray
intNDArray< octave_uint64 > uint64NDArray
intNDArray< octave_uint8 > uint8NDArray