comparison liboctave/operators/mx-defs.h @ 21273:cbced1c09916

better use of templates for svd classes * liboctave/numeric/svd.h, liboctave/numeric/svd.cc: New files for svd classes generated from CmplxSVD.cc, CmplxSVD.h, dbleSVD.cc, dbleSVD.h, fCmplxSVD.cc, fCmplxSVD.h, floatSVD.cc, and floatSVD.h and converted to templates. * liboctave/numeric/module.mk: Update. * __qp__.cc, svd.cc, CMatrix.cc, CMatrix.h, dDiagMatrix.h, dMatrix.cc, dMatrix.h, fCMatrix.cc, fCMatrix.h, fDiagMatrix.h, fMatrix.cc, fMatrix.h, oct-norm.cc, mx-defs.h, mx-ext.h: Use new classes.
author John W. Eaton <jwe@octave.org>
date Tue, 16 Feb 2016 14:41:06 -0500
parents 7e67c7f82fc1
children eb1524b07fe3
comparison
equal deleted inserted replaced
21272:987c1a79d33f 21273:cbced1c09916
68 68
69 template <typename T> class hess; 69 template <typename T> class hess;
70 70
71 template <typename T> class schur; 71 template <typename T> class schur;
72 72
73 class SVD; 73 template <typename T> class svd;
74 class ComplexSVD;
75 class FloatSVD;
76 class FloatComplexSVD;
77 74
78 template <typename T> class lu; 75 template <typename T> class lu;
79 76
80 class QR; 77 class QR;
81 class ComplexQR; 78 class ComplexQR;