Mercurial > hg > octave-lyh
comparison liboctave/CmplxQR.h @ 8597:c86718093c1b
improve & fix QR classes
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Tue, 27 Jan 2009 12:40:06 +0100 |
parents | a6edd5c23cb5 |
children | d865363208d6 |
comparison
equal
deleted
inserted
replaced
8596:8833c0b18eb2 | 8597:c86718093c1b |
---|---|
87 | 87 |
88 friend std::ostream& operator << (std::ostream&, const ComplexQR&); | 88 friend std::ostream& operator << (std::ostream&, const ComplexQR&); |
89 | 89 |
90 protected: | 90 protected: |
91 | 91 |
92 void form (octave_idx_type n, ComplexMatrix& afact, | |
93 Complex *tau, QR::type qr_type); | |
94 | |
92 ComplexMatrix q; | 95 ComplexMatrix q; |
93 ComplexMatrix r; | 96 ComplexMatrix r; |
94 }; | 97 }; |
95 | 98 |
96 #endif | 99 #endif |