2376
|
1 /* |
|
2 |
2847
|
3 Copyright (C) 1996, 1997 John W. Eaton |
2376
|
4 |
|
5 This file is part of Octave. |
|
6 |
|
7 Octave is free software; you can redistribute it and/or modify it |
|
8 under the terms of the GNU General Public License as published by the |
|
9 Free Software Foundation; either version 2, or (at your option) any |
|
10 later version. |
|
11 |
|
12 Octave is distributed in the hope that it will be useful, but WITHOUT |
|
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
15 for more details. |
|
16 |
|
17 You should have received a copy of the GNU General Public License |
|
18 along with Octave; see the file COPYING. If not, write to the Free |
|
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
20 |
|
21 */ |
|
22 |
4192
|
23 #if defined (__GNUG__) && defined (USE_PRAGMA_INTERFACE_IMPLEMENTATION) |
2376
|
24 #pragma implementation |
|
25 #endif |
|
26 |
|
27 #ifdef HAVE_CONFIG_H |
|
28 #include <config.h> |
|
29 #endif |
|
30 |
3503
|
31 #include <iostream> |
2901
|
32 |
2376
|
33 #include "lo-ieee.h" |
|
34 #include "mx-base.h" |
|
35 |
|
36 #include "gripes.h" |
|
37 #include "oct-obj.h" |
2410
|
38 #include "ops.h" |
3219
|
39 #include "ov-base.h" |
|
40 #include "ov-base-mat.h" |
|
41 #include "ov-base-mat.cc" |
2410
|
42 #include "ov-complex.h" |
2376
|
43 #include "ov-cx-mat.h" |
2410
|
44 #include "ov-re-mat.h" |
|
45 #include "ov-scalar.h" |
2376
|
46 #include "pr-output.h" |
|
47 |
3219
|
48 template class octave_base_matrix<ComplexMatrix>; |
2376
|
49 |
3219
|
50 DEFINE_OCTAVE_ALLOCATOR (octave_complex_matrix); |
2477
|
51 |
3219
|
52 DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA (octave_complex_matrix, "complex matrix"); |
2376
|
53 |
2410
|
54 octave_value * |
|
55 octave_complex_matrix::try_narrowing_conversion (void) |
|
56 { |
|
57 octave_value *retval = 0; |
|
58 |
|
59 int nr = matrix.rows (); |
|
60 int nc = matrix.cols (); |
|
61 |
|
62 if (nr == 1 && nc == 1) |
|
63 { |
|
64 Complex c = matrix (0, 0); |
|
65 |
|
66 if (imag (c) == 0.0) |
3775
|
67 retval = new octave_scalar (std::real (c)); |
2410
|
68 else |
|
69 retval = new octave_complex (c); |
|
70 } |
3760
|
71 else if (nr == 0 || nc == 0) |
|
72 retval = new octave_matrix (Matrix (nr, nc)); |
2410
|
73 else if (matrix.all_elements_are_real ()) |
|
74 retval = new octave_matrix (::real (matrix)); |
|
75 |
|
76 return retval; |
|
77 } |
2376
|
78 |
|
79 void |
|
80 octave_complex_matrix::assign (const octave_value_list& idx, |
4418
|
81 const ComplexMatrix& rhs) |
|
82 { |
|
83 octave_base_matrix<ComplexMatrix>::assign (idx, rhs); |
|
84 } |
|
85 |
|
86 void |
|
87 octave_complex_matrix::assign (const octave_value_list& idx, |
2376
|
88 const Matrix& rhs) |
|
89 { |
|
90 int len = idx.length (); |
|
91 |
|
92 switch (len) |
|
93 { |
|
94 case 2: |
|
95 { |
|
96 idx_vector i = idx (0).index_vector (); |
|
97 idx_vector j = idx (1).index_vector (); |
|
98 |
|
99 matrix.set_index (i); |
|
100 matrix.set_index (j); |
|
101 |
|
102 ::assign (matrix, rhs); |
|
103 } |
|
104 break; |
|
105 |
|
106 case 1: |
|
107 { |
|
108 idx_vector i = idx (0).index_vector (); |
|
109 |
|
110 matrix.set_index (i); |
|
111 |
|
112 ::assign (matrix, rhs); |
|
113 } |
|
114 break; |
|
115 |
|
116 default: |
|
117 error ("invalid number of indices (%d) for indexed matrix assignment", |
|
118 len); |
|
119 break; |
|
120 } |
|
121 } |
|
122 |
|
123 bool |
|
124 octave_complex_matrix::valid_as_scalar_index (void) const |
|
125 { |
|
126 // XXX FIXME XXX |
|
127 return false; |
|
128 } |
|
129 |
|
130 double |
|
131 octave_complex_matrix::double_value (bool force_conversion) const |
|
132 { |
4102
|
133 double retval = lo_ieee_nan_value (); |
2376
|
134 |
4451
|
135 if (! force_conversion && Vwarn_imag_to_real) |
2376
|
136 gripe_implicit_conversion ("complex matrix", "real scalar"); |
|
137 |
4451
|
138 if ((rows () == 1 && columns () == 1) |
|
139 || (Vdo_fortran_indexing && rows () > 0 && columns () > 0)) |
|
140 retval = std::real (matrix (0, 0)); |
2376
|
141 else |
|
142 gripe_invalid_conversion ("complex matrix", "real scalar"); |
|
143 |
|
144 return retval; |
|
145 } |
|
146 |
|
147 Matrix |
|
148 octave_complex_matrix::matrix_value (bool force_conversion) const |
|
149 { |
|
150 Matrix retval; |
|
151 |
4451
|
152 if (! force_conversion && Vwarn_imag_to_real) |
2376
|
153 gripe_implicit_conversion ("complex matrix", "real matrix"); |
|
154 |
4451
|
155 retval = ::real (matrix); |
2376
|
156 |
|
157 return retval; |
|
158 } |
|
159 |
|
160 Complex |
|
161 octave_complex_matrix::complex_value (bool) const |
|
162 { |
4102
|
163 double tmp = lo_ieee_nan_value (); |
|
164 |
|
165 Complex retval (tmp, tmp); |
2376
|
166 |
|
167 if ((rows () == 1 && columns () == 1) |
|
168 || (Vdo_fortran_indexing && rows () > 0 && columns () > 0)) |
|
169 retval = matrix (0, 0); |
|
170 else |
|
171 gripe_invalid_conversion ("complex matrix", "complex scalar"); |
|
172 |
|
173 return retval; |
|
174 } |
|
175 |
|
176 ComplexMatrix |
|
177 octave_complex_matrix::complex_matrix_value (bool) const |
|
178 { |
|
179 return matrix; |
|
180 } |
|
181 |
|
182 /* |
|
183 ;;; Local Variables: *** |
|
184 ;;; mode: C++ *** |
|
185 ;;; End: *** |
|
186 */ |