comparison liboctave/base-qr.h @ 9715:9f27172fbd1e

auto-set MatrixType from certain functions
author Jaroslav Hajek <highegg@gmail.com>
date Mon, 12 Oct 2009 14:23:20 +0200
parents 7918eb15040c
children cbc402e64d83
comparison
equal deleted inserted replaced
9714:0407883e1a33 9715:9f27172fbd1e
63 63
64 qr_type R (void) const { return r; } 64 qr_type R (void) const { return r; }
65 65
66 qr_type_t get_type (void) const; 66 qr_type_t get_type (void) const;
67 67
68 bool regular (void) const;
69
68 protected: 70 protected:
69 71
70 qr_type q, r; 72 qr_type q, r;
71 }; 73 };
72 74