GNU Octave  6.2.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
ov-complex.h
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 //
3 // Copyright (C) 1996-2021 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_complex_h)
27 #define octave_ov_complex_h 1
28 
29 #include "octave-config.h"
30 
31 #include <cstdlib>
32 
33 #include <iosfwd>
34 #include <string>
35 
36 #include "lo-ieee.h"
37 #include "mx-base.h"
38 #include "str-vec.h"
39 
40 #include "errwarn.h"
41 #include "error.h"
42 #include "ov-base.h"
43 #include "ov-cx-mat.h"
44 #include "ov-base-scalar.h"
45 #include "ov-typeinfo.h"
46 
47 class octave_value_list;
48 
49 // Complex scalar values.
50 
51 class
52 OCTINTERP_API
54 {
55 public:
56 
58  : octave_base_scalar<Complex> () { }
59 
61  : octave_base_scalar<Complex> (c) { }
62 
64  : octave_base_scalar<Complex> (c) { }
65 
66  ~octave_complex (void) = default;
67 
68  octave_base_value * clone (void) const { return new octave_complex (*this); }
69 
70  // We return an octave_complex_matrix object here instead of an
71  // octave_complex object so that in expressions like A(2,2,2) = 2
72  // (for A previously undefined), A will be empty instead of a 1x1
73  // object.
75  { return new octave_complex_matrix (); }
76 
77  type_conv_info numeric_demotion_function (void) const;
78 
79  octave_base_value * try_narrowing_conversion (void);
80 
81  octave_value do_index_op (const octave_value_list& idx,
82  bool resize_ok = false);
83 
84  // Use this to give a more specific error message.
85  idx_vector index_vector (bool /* require_integers */ = false) const;
86 
87  octave_value any (int = 0) const
88  {
89  return (scalar != Complex (0, 0)
90  && ! (lo_ieee_isnan (scalar.real ())
91  || lo_ieee_isnan (scalar.imag ())));
92  }
93 
94  builtin_type_t builtin_type (void) const { return btyp_complex; }
95 
96  bool is_complex_scalar (void) const { return true; }
97 
98  bool iscomplex (void) const { return true; }
99 
100  bool is_double_type (void) const { return true; }
101 
102  bool isfloat (void) const { return true; }
103 
104  double double_value (bool = false) const;
105 
106  float float_value (bool = false) const;
107 
108  double scalar_value (bool frc_str_conv = false) const
109  { return double_value (frc_str_conv); }
110 
111  float float_scalar_value (bool frc_str_conv = false) const
112  { return float_value (frc_str_conv); }
113 
114  Matrix matrix_value (bool = false) const;
115 
116  FloatMatrix float_matrix_value (bool = false) const;
117 
118  NDArray array_value (bool = false) const;
119 
120  FloatNDArray float_array_value (bool = false) const;
121 
122  SparseMatrix sparse_matrix_value (bool = false) const
123  { return SparseMatrix (matrix_value ()); }
124 
126  { return SparseComplexMatrix (complex_matrix_value ()); }
127 
128  octave_value resize (const dim_vector& dv, bool fill = false) const;
129 
130  Complex complex_value (bool = false) const;
131 
132  FloatComplex float_complex_value (bool = false) const;
133 
134  ComplexMatrix complex_matrix_value (bool = false) const;
135 
136  FloatComplexMatrix float_complex_matrix_value (bool = false) const;
137 
138  ComplexNDArray complex_array_value (bool = false) const;
139 
140  FloatComplexNDArray float_complex_array_value (bool = false) const;
141 
142  bool bool_value (bool warn = false) const
143  {
146  if (warn && scalar != 0.0 && scalar != 1.0)
148 
149  return scalar != 0.0;
150  }
151 
152  boolNDArray bool_array_value (bool warn = false) const
153  {
156  if (warn && scalar != 0.0 && scalar != 1.0)
158 
159  return boolNDArray (dim_vector (1, 1), scalar != 0.0);
160  }
161 
162  octave_value as_double (void) const;
163  octave_value as_single (void) const;
164 
165  // We don't need to override both forms of the diag method. The using
166  // declaration will avoid warnings about partially-overloaded virtual
167  // functions.
169 
171 
172  void increment (void) { scalar += 1.0; }
173 
174  void decrement (void) { scalar -= 1.0; }
175 
176  bool save_ascii (std::ostream& os);
177 
178  bool load_ascii (std::istream& is);
179 
180  bool save_binary (std::ostream& os, bool save_as_floats);
181 
182  bool load_binary (std::istream& is, bool swap,
184 
185  bool save_hdf5 (octave_hdf5_id loc_id, const char *name, bool save_as_floats);
186 
187  bool load_hdf5 (octave_hdf5_id loc_id, const char *name);
188 
189  int write (octave::stream& os, int block_size,
190  oct_data_conv::data_type output_type, int skip,
191  octave::mach_info::float_format flt_fmt) const
192  {
193  // Yes, for compatibility, we drop the imaginary part here.
194  return os.write (array_value (true), block_size, output_type,
195  skip, flt_fmt);
196  }
197 
198  mxArray * as_mxArray (void) const;
199 
200  octave_value map (unary_mapper_t umap) const;
201 
202 private:
203 
205 };
206 
208 
209 #endif
Definition: dMatrix.h:42
Vector representing the dimensions (size) of an Array.
Definition: dim-vector.h:95
octave_idx_type write(const octave_value &data, octave_idx_type block_size, oct_data_conv::data_type output_type, octave_idx_type skip, mach_info::float_format flt_fmt)
Definition: oct-stream.cc:6777
octave_complex(const Complex &c)
Definition: ov-complex.h:60
~octave_complex(void)=default
float float_scalar_value(bool frc_str_conv=false) const
Definition: ov-complex.h:111
octave_complex(void)
Definition: ov-complex.h:57
SparseMatrix sparse_matrix_value(bool=false) const
Definition: ov-complex.h:122
octave_complex(const octave_complex &c)
Definition: ov-complex.h:63
octave_base_value * empty_clone(void) const
Definition: ov-complex.h:74
builtin_type_t builtin_type(void) const
Definition: ov-complex.h:94
boolNDArray bool_array_value(bool warn=false) const
Definition: ov-complex.h:152
SparseComplexMatrix sparse_complex_matrix_value(bool=false) const
Definition: ov-complex.h:125
void decrement(void)
Definition: ov-complex.h:174
double scalar_value(bool frc_str_conv=false) const
Definition: ov-complex.h:108
octave_base_value * clone(void) const
Definition: ov-complex.h:68
void increment(void)
Definition: ov-complex.h:172
octave_value any(int=0) const
Definition: ov-complex.h:87
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-complex.h:189
bool is_double_type(void) const
Definition: ov-complex.h:100
bool iscomplex(void) const
Definition: ov-complex.h:98
bool bool_value(bool warn=false) const
Definition: ov-complex.h:142
bool isfloat(void) const
Definition: ov-complex.h:102
bool is_complex_scalar(void) const
Definition: ov-complex.h:96
void resize(octave_idx_type n, const octave_value &rfv=octave_value())
Definition: ovl.h:117
Array< octave_value > array_value(void) const
Definition: ovl.h:90
void warn_logical_conversion(void)
Definition: errwarn.cc:365
QString name
#define lo_ieee_isnan(x)
Definition: lo-ieee.h:112
T octave_idx_type m
Definition: mx-inlines.cc:773
octave_idx_type n
Definition: mx-inlines.cc:753
bool isnan(bool)
Definition: lo-mappers.h:178
void err_nan_to_logical_conversion(void)
std::complex< double > Complex
Definition: oct-cmplx.h:33
std::complex< float > FloatComplex
Definition: oct-cmplx.h:34
int64_t octave_hdf5_id
static double as_double(time_t sec, long usec)
Definition: oct-time.h:37
#define DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA
Definition: ov-base.h:158
builtin_type_t
Definition: ov-base.h:72
@ btyp_complex
Definition: ov-base.h:75
octave_complex octave_complex_scalar
Definition: ov-complex.h:207
static bool scalar(const dim_vector &dims)
Definition: ov-struct.cc:669