Mercurial > hg > octave-lyh
annotate src/ov-cx-mat.h @ 7515:f3c00dc0912b
Eliminate the rest of the dispatched sparse functions
author | David Bateman <dbateman@free.fr> |
---|---|
date | Fri, 22 Feb 2008 15:50:51 +0100 |
parents | 8c32f95c2639 |
children | 7ebdc99a0bab |
rev | line source |
---|---|
2376 | 1 /* |
2 | |
7017 | 3 Copyright (C) 1996, 1997, 1998, 2000, 2002, 2003, 2004, 2005, 2006, |
4 2007 John W. Eaton | |
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_complex_matrix_h) | |
25 #define octave_complex_matrix_h 1 | |
26 | |
27 #include <cstdlib> | |
28 | |
3503 | 29 #include <iostream> |
2376 | 30 #include <string> |
31 | |
32 #include "mx-base.h" | |
2477 | 33 #include "oct-alloc.h" |
2376 | 34 #include "str-vec.h" |
35 | |
36 #include "error.h" | |
4944 | 37 #include "oct-stream.h" |
2376 | 38 #include "ov-base.h" |
3219 | 39 #include "ov-base-mat.h" |
2376 | 40 #include "ov-typeinfo.h" |
41 | |
5785 | 42 #include "MatrixType.h" |
43 | |
2376 | 44 class Octave_map; |
45 class octave_value_list; | |
46 | |
47 class tree_walker; | |
48 | |
2477 | 49 // Complex matrix values. |
2376 | 50 |
51 class | |
6693 | 52 OCTINTERP_API |
4513 | 53 octave_complex_matrix : public octave_base_matrix<ComplexNDArray> |
2376 | 54 { |
55 public: | |
56 | |
57 octave_complex_matrix (void) | |
4513 | 58 : octave_base_matrix<ComplexNDArray> () { } |
59 | |
60 octave_complex_matrix (const ComplexNDArray& m) | |
61 : octave_base_matrix<ComplexNDArray> (m) { } | |
2376 | 62 |
63 octave_complex_matrix (const ComplexMatrix& m) | |
4513 | 64 : octave_base_matrix<ComplexNDArray> (m) { } |
2376 | 65 |
5785 | 66 octave_complex_matrix (const ComplexMatrix& m, const MatrixType& t) |
67 : octave_base_matrix<ComplexNDArray> (m, t) { } | |
68 | |
4911 | 69 octave_complex_matrix (const ArrayN<Complex>& m) |
70 : octave_base_matrix<ComplexNDArray> (ComplexNDArray (m)) { } | |
71 | |
2376 | 72 octave_complex_matrix (const ComplexDiagMatrix& d) |
4513 | 73 : octave_base_matrix<ComplexNDArray> (ComplexMatrix (d)) { } |
2376 | 74 |
3418 | 75 octave_complex_matrix (const ComplexRowVector& v) |
4513 | 76 : octave_base_matrix<ComplexNDArray> (ComplexMatrix (v)) { } |
2376 | 77 |
3418 | 78 octave_complex_matrix (const ComplexColumnVector& v) |
4513 | 79 : octave_base_matrix<ComplexNDArray> (ComplexMatrix (v)) { } |
2376 | 80 |
81 octave_complex_matrix (const octave_complex_matrix& cm) | |
4513 | 82 : octave_base_matrix<ComplexNDArray> (cm) { } |
2376 | 83 |
84 ~octave_complex_matrix (void) { } | |
85 | |
5759 | 86 octave_base_value *clone (void) const { return new octave_complex_matrix (*this); } |
87 octave_base_value *empty_clone (void) const { return new octave_complex_matrix (); } | |
2376 | 88 |
5759 | 89 octave_base_value *try_narrowing_conversion (void); |
2410 | 90 |
4686 | 91 void assign (const octave_value_list& idx, const ComplexNDArray& rhs); |
2376 | 92 |
4686 | 93 void assign (const octave_value_list& idx, const NDArray& rhs); |
2376 | 94 |
95 bool is_complex_matrix (void) const { return true; } | |
96 | |
97 bool is_complex_type (void) const { return true; } | |
98 | |
5895 | 99 bool is_double_type (void) const { return true; } |
100 | |
2376 | 101 bool valid_as_scalar_index (void) const; |
102 | |
3145 | 103 double double_value (bool = false) const; |
2376 | 104 |
3145 | 105 double scalar_value (bool frc_str_conv = false) const |
106 { return double_value (frc_str_conv); } | |
2916 | 107 |
2376 | 108 Matrix matrix_value (bool = false) const; |
109 | |
110 Complex complex_value (bool = false) const; | |
111 | |
112 ComplexMatrix complex_matrix_value (bool = false) const; | |
113 | |
4550 | 114 ComplexNDArray complex_array_value (bool = false) const { return matrix; } |
4543 | 115 |
7503
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
116 charNDArray char_array_value (bool frc_str_conv = false) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
117 |
5164 | 118 SparseMatrix sparse_matrix_value (bool = false) const; |
119 | |
120 SparseComplexMatrix sparse_complex_matrix_value (bool = false) const; | |
121 | |
3107 | 122 void increment (void) { matrix += Complex (1.0); } |
2376 | 123 |
3107 | 124 void decrement (void) { matrix -= Complex (1.0); } |
2376 | 125 |
6974 | 126 bool save_ascii (std::ostream& os); |
4687 | 127 |
128 bool load_ascii (std::istream& is); | |
129 | |
130 bool save_binary (std::ostream& os, bool& save_as_floats); | |
131 | |
132 bool load_binary (std::istream& is, bool swap, | |
133 oct_mach_info::float_format fmt); | |
134 | |
135 #if defined (HAVE_HDF5) | |
136 bool save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats); | |
137 | |
138 bool load_hdf5 (hid_t loc_id, const char *name, bool have_h5giterate_bug); | |
139 #endif | |
140 | |
4944 | 141 int write (octave_stream& os, int block_size, |
142 oct_data_conv::data_type output_type, int skip, | |
143 oct_mach_info::float_format flt_fmt) const | |
144 { | |
145 // Yes, for compatibility, we drop the imaginary part here. | |
146 return os.write (matrix_value (true), block_size, output_type, | |
147 skip, flt_fmt); | |
148 } | |
149 | |
4643 | 150 void print_raw (std::ostream& os, bool pr_as_read_syntax = false) const; |
151 | |
5900 | 152 mxArray *as_mxArray (void) const; |
153 | |
7503
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
154 octave_value abs (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
155 octave_value acos (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
156 octave_value acosh (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
157 octave_value angle (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
158 octave_value arg (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
159 octave_value asin (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
160 octave_value asinh (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
161 octave_value atan (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
162 octave_value atanh (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
163 octave_value ceil (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
164 octave_value conj (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
165 octave_value cos (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
166 octave_value cosh (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
167 octave_value exp (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
168 octave_value fix (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
169 octave_value floor (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
170 octave_value imag (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
171 octave_value log (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
172 octave_value log10 (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
173 octave_value real (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
174 octave_value round (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
175 octave_value signum (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
176 octave_value sin (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
177 octave_value sinh (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
178 octave_value sqrt (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
179 octave_value tan (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
180 octave_value tanh (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
181 octave_value finite (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
182 octave_value isinf (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
183 octave_value isna (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
184 octave_value isnan (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
185 |
2376 | 186 private: |
187 | |
3219 | 188 DECLARE_OCTAVE_ALLOCATOR |
2477 | 189 |
3219 | 190 DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA |
2376 | 191 }; |
192 | |
193 #endif | |
194 | |
195 /* | |
196 ;;; Local Variables: *** | |
197 ;;; mode: C++ *** | |
198 ;;; End: *** | |
199 */ |