00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #if !defined (octave_base_qr_h)
00024 #define octave_base_qr_h 1
00025
00026 #include "MArray.h"
00027 #include "dColVector.h"
00028 #include "PermMatrix.h"
00029
00030 enum qr_type_t
00031 {
00032 qr_type_std,
00033 qr_type_raw,
00034 qr_type_economy
00035 };
00036
00037 template <class qr_type>
00038 class
00039 base_qr
00040 {
00041 public:
00042
00043 typedef typename qr_type::element_type qr_elt_type;
00044
00045 base_qr (void) { }
00046
00047 base_qr (const qr_type& q, const qr_type& r);
00048
00049 base_qr (const base_qr& a) :
00050 q (a.q), r (a.r) { }
00051
00052 base_qr& operator = (const base_qr& a)
00053 {
00054 if (this != &a)
00055 {
00056 q = a.q;
00057 r = a.r;
00058 }
00059 return *this;
00060 }
00061
00062 qr_type Q (void) const { return q; }
00063
00064 qr_type R (void) const { return r; }
00065
00066 qr_type_t get_type (void) const;
00067
00068 bool regular (void) const;
00069
00070 protected:
00071
00072 qr_type q, r;
00073 };
00074
00075 #ifndef HAVE_QRUPDATE
00076 void warn_qrupdate_once (void);
00077 #endif
00078
00079 #endif