GNU Octave  6.2.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
ov-re-mat.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_re_mat_h)
27 #define octave_ov_re_mat_h 1
28 
29 #include "octave-config.h"
30 
31 #include <cstdlib>
32 
33 #include <iosfwd>
34 #include <string>
35 
36 #include "mx-base.h"
37 #include "str-vec.h"
38 
39 #include "error.h"
40 #include "oct-stream.h"
41 #include "ov-base.h"
42 #include "ov-base-mat.h"
43 #include "ov-typeinfo.h"
44 
45 #include "MatrixType.h"
46 
47 class octave_value_list;
48 
49 // Real matrix values.
50 
51 class
52 OCTINTERP_API
54 {
55 public:
56 
58  : octave_base_matrix<NDArray> () { }
59 
62 
63  octave_matrix (const Matrix& m, const MatrixType& t)
64  : octave_base_matrix<NDArray> (m, t) { }
65 
66  octave_matrix (const NDArray& nda)
67  : octave_base_matrix<NDArray> (nda) { }
68 
71 
74 
76  : octave_base_matrix<NDArray> (Matrix (v)) { }
77 
79  : octave_base_matrix<NDArray> (Matrix (v)) { }
80 
83 
85  bool zero_based = false, bool cache_index = false)
86  : octave_base_matrix<NDArray> (NDArray (idx, zero_based))
87  {
88  // Auto-create cache to speed up subsequent indexing.
89  if (zero_based && cache_index)
90  set_idx_cache (idx_vector (idx));
91  }
92 
93  octave_matrix (const NDArray& nda, const idx_vector& cache)
95  {
96  set_idx_cache (cache);
97  }
98 
99  ~octave_matrix (void) = default;
100 
101  octave_base_value * clone (void) const { return new octave_matrix (*this); }
102  octave_base_value * empty_clone (void) const { return new octave_matrix (); }
103 
104  type_conv_info numeric_demotion_function (void) const;
105 
106  octave_base_value * try_narrowing_conversion (void);
107 
108  idx_vector index_vector (bool /* require_integers */ = false) const
109  { return idx_cache ? *idx_cache : set_idx_cache (idx_vector (matrix)); }
110 
111  builtin_type_t builtin_type (void) const { return btyp_double; }
112 
113  bool is_real_matrix (void) const { return true; }
114 
115  bool isreal (void) const { return true; }
116 
117  bool is_double_type (void) const { return true; }
118 
119  bool isfloat (void) const { return true; }
120 
122  int8_array_value (void) const { return int8NDArray (matrix); }
123 
125  int16_array_value (void) const { return int16NDArray (matrix); }
126 
128  int32_array_value (void) const { return int32NDArray (matrix); }
129 
131  int64_array_value (void) const { return int64NDArray (matrix); }
132 
134  uint8_array_value (void) const { return uint8NDArray (matrix); }
135 
137  uint16_array_value (void) const { return uint16NDArray (matrix); }
138 
140  uint32_array_value (void) const { return uint32NDArray (matrix); }
141 
143  uint64_array_value (void) const { return uint64NDArray (matrix); }
144 
145  double double_value (bool = false) const;
146 
147  float float_value (bool = false) const;
148 
149  double scalar_value (bool frc_str_conv = false) const
150  { return double_value (frc_str_conv); }
151 
152  Matrix matrix_value (bool = false) const;
153 
154  FloatMatrix float_matrix_value (bool = false) const;
155 
156  Complex complex_value (bool = false) const;
157 
158  FloatComplex float_complex_value (bool = false) const;
159 
160  ComplexMatrix complex_matrix_value (bool = false) const;
161 
162  FloatComplexMatrix float_complex_matrix_value (bool = false) const;
163 
164  ComplexNDArray complex_array_value (bool = false) const;
165 
166  FloatComplexNDArray float_complex_array_value (bool = false) const;
167 
168  boolNDArray bool_array_value (bool warn = false) const;
169 
170  charNDArray char_array_value (bool = false) const;
171 
172  NDArray array_value (bool = false) const { return matrix; }
173 
174  FloatNDArray float_array_value (bool = false) const { return matrix; }
175 
176  SparseMatrix sparse_matrix_value (bool = false) const;
177 
178  SparseComplexMatrix sparse_complex_matrix_value (bool = false) const;
179 
180  octave_value as_double (void) const;
181  octave_value as_single (void) const;
182 
183  octave_value as_int8 (void) const;
184  octave_value as_int16 (void) const;
185  octave_value as_int32 (void) const;
186  octave_value as_int64 (void) const;
187 
188  octave_value as_uint8 (void) const;
189  octave_value as_uint16 (void) const;
190  octave_value as_uint32 (void) const;
191  octave_value as_uint64 (void) const;
192 
193  octave_value diag (octave_idx_type k = 0) const;
194 
196 
197  octave_value reshape (const dim_vector& new_dims) const;
198 
199  octave_value squeeze (void) const;
200 
201  octave_value sort (octave_idx_type dim = 0, sortmode mode = ASCENDING) const;
203  sortmode mode = ASCENDING) const;
204 
205  sortmode issorted (sortmode mode = UNSORTED) const;
206 
207  Array<octave_idx_type> sort_rows_idx (sortmode mode = ASCENDING) const;
208 
209  sortmode is_sorted_rows (sortmode mode = UNSORTED) const;
210 
211  // Use matrix_ref here to clear index cache.
212  void increment (void) { matrix_ref () += 1.0; }
213 
214  void decrement (void) { matrix_ref () -= 1.0; }
215 
216  void changesign (void) { matrix_ref ().changesign (); }
217 
218  octave_value convert_to_str_internal (bool pad, bool force, char type) const;
219 
220  void print_raw (std::ostream& os, bool pr_as_read_syntax = false) const;
221 
222  bool save_ascii (std::ostream& os);
223 
224  bool load_ascii (std::istream& is);
225 
226  bool save_binary (std::ostream& os, bool save_as_floats);
227 
228  bool load_binary (std::istream& is, bool swap,
230 
231  bool save_hdf5 (octave_hdf5_id loc_id, const char *name, bool save_as_floats);
232 
233  bool load_hdf5 (octave_hdf5_id loc_id, const char *name);
234 
235  int write (octave::stream& os, int block_size,
236  oct_data_conv::data_type output_type, int skip,
237  octave::mach_info::float_format flt_fmt) const
238  { return os.write (matrix, block_size, output_type, skip, flt_fmt); }
239 
240  // Unsafe. This function exists to support the MEX interface.
241  // You should not use it anywhere else.
242  void * mex_get_data (void) const { return matrix.mex_get_data (); }
243 
244  mxArray * as_mxArray (void) const;
245 
246  octave_value map (unary_mapper_t umap) const;
247 
248 private:
249 
251 };
252 
253 #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
uint8NDArray uint8_array_value(void) const
Definition: ov-re-mat.h:134
~octave_matrix(void)=default
octave_matrix(const NDArray &nda)
Definition: ov-re-mat.h:66
octave_matrix(const Matrix &m, const MatrixType &t)
Definition: ov-re-mat.h:63
bool isreal(void) const
Definition: ov-re-mat.h:115
octave_matrix(const RowVector &v)
Definition: ov-re-mat.h:75
octave_matrix(void)
Definition: ov-re-mat.h:57
octave_matrix(const Array< octave_idx_type > &idx, bool zero_based=false, bool cache_index=false)
Definition: ov-re-mat.h:84
builtin_type_t builtin_type(void) const
Definition: ov-re-mat.h:111
bool is_double_type(void) const
Definition: ov-re-mat.h:117
bool is_real_matrix(void) const
Definition: ov-re-mat.h:113
void changesign(void)
Definition: ov-re-mat.h:216
void increment(void)
Definition: ov-re-mat.h:212
void * mex_get_data(void) const
Definition: ov-re-mat.h:242
uint32NDArray uint32_array_value(void) const
Definition: ov-re-mat.h:140
int16NDArray int16_array_value(void) const
Definition: ov-re-mat.h:125
double scalar_value(bool frc_str_conv=false) const
Definition: ov-re-mat.h:149
int32NDArray int32_array_value(void) const
Definition: ov-re-mat.h:128
octave_matrix(const ColumnVector &v)
Definition: ov-re-mat.h:78
int8NDArray int8_array_value(void) const
Definition: ov-re-mat.h:122
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-re-mat.h:235
octave_base_value * empty_clone(void) const
Definition: ov-re-mat.h:102
int64NDArray int64_array_value(void) const
Definition: ov-re-mat.h:131
idx_vector index_vector(bool=false) const
Definition: ov-re-mat.h:108
octave_matrix(const Array< double > &m)
Definition: ov-re-mat.h:69
octave_base_value * clone(void) const
Definition: ov-re-mat.h:101
octave_matrix(const NDArray &nda, const idx_vector &cache)
Definition: ov-re-mat.h:93
uint64NDArray uint64_array_value(void) const
Definition: ov-re-mat.h:143
octave_matrix(const Matrix &m)
Definition: ov-re-mat.h:60
octave_matrix(const octave_matrix &m)
Definition: ov-re-mat.h:81
bool isfloat(void) const
Definition: ov-re-mat.h:119
octave_matrix(const DiagMatrix &d)
Definition: ov-re-mat.h:72
FloatNDArray float_array_value(bool=false) const
Definition: ov-re-mat.h:174
void decrement(void)
Definition: ov-re-mat.h:214
NDArray array_value(bool=false) const
Definition: ov-re-mat.h:172
uint16NDArray uint16_array_value(void) const
Definition: ov-re-mat.h:137
QString name
intNDArray< octave_int16 > int16NDArray
Definition: int16NDArray.h:36
intNDArray< octave_int32 > int32NDArray
Definition: int32NDArray.h:36
intNDArray< octave_int64 > int64NDArray
Definition: int64NDArray.h:36
intNDArray< octave_int8 > int8NDArray
Definition: int8NDArray.h:36
F77_RET_T const F77_DBLE const F77_DBLE F77_DBLE * d
T octave_idx_type m
Definition: mx-inlines.cc:773
octave_idx_type n
Definition: mx-inlines.cc:753
std::complex< double > Complex
Definition: oct-cmplx.h:33
std::complex< float > FloatComplex
Definition: oct-cmplx.h:34
int64_t octave_hdf5_id
sortmode
Definition: oct-sort.h:95
@ UNSORTED
Definition: oct-sort.h:95
@ ASCENDING
Definition: oct-sort.h:95
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_double
Definition: ov-base.h:73
intNDArray< octave_uint16 > uint16NDArray
Definition: uint16NDArray.h:36
intNDArray< octave_uint32 > uint32NDArray
Definition: uint32NDArray.h:36
intNDArray< octave_uint64 > uint64NDArray
Definition: uint64NDArray.h:36
intNDArray< octave_uint8 > uint8NDArray
Definition: uint8NDArray.h:36