comparison liboctave/operators/mx-ext.h @ 21279:eb1524b07fe3

better use of templates for qr classes * liboctave/numeric/qr.h, liboctave/numeric/qr.cc: New files for qr classes generated from CmplxQR.cc, CmplxQR.h, base-qr.cc, base-qr.h, dbleQR.cc, dbleQR.h, fCmplxQR.cc, fCmplxQR.h, floatQR.cc, and floatQR.h with classes converted to templates. * liboctave/numeric/module.mk: Update. * qz.cc, qr.cc, CmplxQRP.cc, CmplxQRP.h, dbleQRP.cc, dbleQRP.h, fCmplxQRP.cc fCmplxQRP.h, floatQRP.cc, floatQRP.h, mx-defs.h, mx-ext.h: Use new classes.
author John W. Eaton <jwe@octave.org>
date Wed, 17 Feb 2016 02:57:21 -0500
parents cbced1c09916
children 63b41167ef1e
comparison
equal deleted inserted replaced
21278:48d82f74243e 21279:eb1524b07fe3
61 61
62 #include "lu.h" 62 #include "lu.h"
63 63
64 // Result of a QR decomposition. 64 // Result of a QR decomposition.
65 65
66 #include "dbleQR.h" 66 #include "qr.h"
67 #include "CmplxQR.h"
68
69 #include "dbleQRP.h"
70 #include "CmplxQRP.h"
71 67
72 #endif 68 #endif