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_flt_complex_h)
27 #define octave_ov_flt_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-flt-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
53 octave_float_complex : public octave_base_scalar<FloatComplex>
54 {
55 public:
56 
octave_float_complex(void)57   octave_float_complex (void)
58     : octave_base_scalar<FloatComplex> () { }
59 
octave_float_complex(const FloatComplex & c)60   octave_float_complex (const FloatComplex& c)
61     : octave_base_scalar<FloatComplex> (c) { }
62 
octave_float_complex(const octave_float_complex & c)63   octave_float_complex (const octave_float_complex& c)
64     : octave_base_scalar<FloatComplex> (c) { }
65 
66   ~octave_float_complex (void) = default;
67 
clone(void)68   octave_base_value * clone (void) const
69   { return new octave_float_complex (*this); }
70 
71   // We return an octave_float_complex_matrix object here instead of an
72   // octave_float_complex object so that in expressions like A(2,2,2) = 2
73   // (for A previously undefined), A will be empty instead of a 1x1
74   // object.
empty_clone(void)75   octave_base_value * empty_clone (void) const
76   { return new octave_float_complex_matrix (); }
77 
78   octave_base_value * try_narrowing_conversion (void);
79 
80   octave_value do_index_op (const octave_value_list& idx,
81                             bool resize_ok = false);
82 
83   octave_value any (int = 0) const
84   {
85     return (scalar != FloatComplex (0, 0)
86             && ! (lo_ieee_isnan (scalar.real ())
87                   || lo_ieee_isnan (scalar.imag ())));
88   }
89 
builtin_type(void)90   builtin_type_t builtin_type (void) const { return btyp_float_complex; }
91 
is_complex_scalar(void)92   bool is_complex_scalar (void) const { return true; }
93 
iscomplex(void)94   bool iscomplex (void) const { return true; }
95 
is_single_type(void)96   bool is_single_type (void) const { return true; }
97 
isfloat(void)98   bool isfloat (void) const { return true; }
99 
100   double double_value (bool = false) const;
101 
102   float float_value (bool = false) const;
103 
104   double scalar_value (bool frc_str_conv = false) const
105   { return double_value (frc_str_conv); }
106 
107   float float_scalar_value (bool frc_str_conv = false) const
108   { return float_value (frc_str_conv); }
109 
110   Matrix matrix_value (bool = false) const;
111 
112   FloatMatrix float_matrix_value (bool = false) const;
113 
114   NDArray array_value (bool = false) const;
115 
116   FloatNDArray float_array_value (bool = false) const;
117 
118   SparseMatrix sparse_matrix_value (bool = false) const
119   { return SparseMatrix (matrix_value ()); }
120 
121   SparseComplexMatrix sparse_complex_matrix_value (bool = false) const
122   { return SparseComplexMatrix (complex_matrix_value ()); }
123 
124   octave_value resize (const dim_vector& dv, bool fill = false) const;
125 
126   Complex complex_value (bool = false) const;
127 
128   FloatComplex float_complex_value (bool = false) const;
129 
130   ComplexMatrix complex_matrix_value (bool = false) const;
131 
132   FloatComplexMatrix float_complex_matrix_value (bool = false) const;
133 
134   ComplexNDArray complex_array_value (bool = false) const;
135 
136   FloatComplexNDArray float_complex_array_value (bool = false) const;
137 
138   bool bool_value (bool warn = false) const
139   {
140     if (octave::math::isnan (scalar))
141       octave::err_nan_to_logical_conversion ();
142     if (warn && scalar != 0.0f && scalar != 1.0f)
143       warn_logical_conversion ();
144 
145     return scalar != 0.0f;
146   }
147 
148   boolNDArray bool_array_value (bool warn = false) const
149   {
150     if (octave::math::isnan (scalar))
151       octave::err_nan_to_logical_conversion ();
152     if (warn && scalar != 0.0f && scalar != 1.0f)
153       warn_logical_conversion ();
154 
155     return boolNDArray (dim_vector (1, 1), scalar != 1.0f);
156   }
157 
158   octave_value as_double (void) const;
159   octave_value as_single (void) const;
160 
161   // We don't need to override both forms of the diag method.  The using
162   // declaration will avoid warnings about partially-overloaded virtual
163   // functions.
164   using octave_base_scalar<FloatComplex>::diag;
165 
166   octave_value diag (octave_idx_type m, octave_idx_type n) const;
167 
increment(void)168   void increment (void) { scalar += 1.0; }
169 
decrement(void)170   void decrement (void) { scalar -= 1.0; }
171 
172   bool save_ascii (std::ostream& os);
173 
174   bool load_ascii (std::istream& is);
175 
176   bool save_binary (std::ostream& os, bool save_as_floats);
177 
178   bool load_binary (std::istream& is, bool swap,
179                     octave::mach_info::float_format fmt);
180 
181   bool save_hdf5 (octave_hdf5_id loc_id, const char *name, bool save_as_floats);
182 
183   bool load_hdf5 (octave_hdf5_id loc_id, const char *name);
184 
write(octave::stream & os,int block_size,oct_data_conv::data_type output_type,int skip,octave::mach_info::float_format flt_fmt)185   int write (octave::stream& os, int block_size,
186              oct_data_conv::data_type output_type, int skip,
187              octave::mach_info::float_format flt_fmt) const
188   {
189     // Yes, for compatibility, we drop the imaginary part here.
190     return os.write (array_value (true), block_size, output_type,
191                      skip, flt_fmt);
192   }
193 
194   mxArray * as_mxArray (void) const;
195 
196   octave_value map (unary_mapper_t umap) const;
197 
198 private:
199 
200   DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA
201 };
202 
203 typedef octave_float_complex octave_float_complex_scalar;
204 
205 #endif
206