Mercurial > hg > octave-lyh
comparison liboctave/floatQRP.h @ 10905:9ee5a0a1b93d
Return permutation vector from QR as a row, not column, vector.
Fixes Bug #30832.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Sat, 21 Aug 2010 13:02:34 -0700 |
parents | cbc402e64d83 |
children | fd0a3ac60b0e |
comparison
equal
deleted
inserted
replaced
10904:69a2e9ccb2fb | 10905:9ee5a0a1b93d |
---|---|
57 | 57 |
58 void init (const FloatMatrix&, qr_type_t = qr_type_std); | 58 void init (const FloatMatrix&, qr_type_t = qr_type_std); |
59 | 59 |
60 PermMatrix P (void) const { return p; } | 60 PermMatrix P (void) const { return p; } |
61 | 61 |
62 FloatColumnVector Pvec (void) const; | 62 FloatRowVector Pvec (void) const; |
63 | 63 |
64 friend std::ostream& operator << (std::ostream&, const FloatQRP&); | 64 friend std::ostream& operator << (std::ostream&, const FloatQRP&); |
65 | 65 |
66 protected: | 66 protected: |
67 | 67 |