comparison liboctave/SparseCmplxQR.h @ 10350:12884915a8e4

merge MArray classes & improve Array interface
author Jaroslav Hajek <highegg@gmail.com>
date Sat, 23 Jan 2010 21:41:03 +0100
parents cbc402e64d83
children fd0a3ac60b0e
comparison
equal deleted inserted replaced
10349:d4d13389c957 10350:12884915a8e4
148 148
149 extern ComplexMatrix qrsolve (const SparseComplexMatrix &a, const Matrix &b, 149 extern ComplexMatrix qrsolve (const SparseComplexMatrix &a, const Matrix &b,
150 octave_idx_type &info); 150 octave_idx_type &info);
151 151
152 extern ComplexMatrix qrsolve (const SparseComplexMatrix &a, 152 extern ComplexMatrix qrsolve (const SparseComplexMatrix &a,
153 const MArray2<double> &b, 153 const MArray<double> &b,
154 octave_idx_type &info); 154 octave_idx_type &info);
155 155
156 extern SparseComplexMatrix qrsolve (const SparseComplexMatrix &a, 156 extern SparseComplexMatrix qrsolve (const SparseComplexMatrix &a,
157 const SparseMatrix &b, 157 const SparseMatrix &b,
158 octave_idx_type &info); 158 octave_idx_type &info);
160 extern ComplexMatrix qrsolve (const SparseComplexMatrix &a, 160 extern ComplexMatrix qrsolve (const SparseComplexMatrix &a,
161 const ComplexMatrix &b, 161 const ComplexMatrix &b,
162 octave_idx_type &info); 162 octave_idx_type &info);
163 163
164 extern ComplexMatrix qrsolve (const SparseComplexMatrix &a, 164 extern ComplexMatrix qrsolve (const SparseComplexMatrix &a,
165 const MArray2<Complex> &b, 165 const MArray<Complex> &b,
166 octave_idx_type &info); 166 octave_idx_type &info);
167 167
168 extern SparseComplexMatrix qrsolve (const SparseComplexMatrix &a, 168 extern SparseComplexMatrix qrsolve (const SparseComplexMatrix &a,
169 const SparseComplexMatrix &b, 169 const SparseComplexMatrix &b,
170 octave_idx_type &info); 170 octave_idx_type &info);