comparison liboctave/operators/mx-ext.h @ 22235:63b41167ef1e

gsvd: new function imported from Octave-Forge linear-algebra package. * libinterp/corefcn/gsvd.cc: New function to the interpreter. Imported from the linear-algebra package. * CmplxGSVD.cc, CmplxGSVD.h, dbleGSVD.cc, dbleGSVD.h: new classes imported from the linear-algebra package to compute gsvd of Matrix and ComplexMatrix. * liboctave/operators/mx-defs.h, liboctave/operators/mx-ext.h: use new classes. * libinterp/corefcn/module.mk, liboctave/numeric/module.mk: Add to the * scripts/help/__unimplemented__.m: Remove "gsvd" from list. * doc/interpreter/linalg.txi: Add to manual. build system. * NEWS: Add function to list of new functions for 4.2.
author Barbara Locsi <locsi.barbara@gmail.com>
date Thu, 04 Aug 2016 07:50:31 +0200
parents eb1524b07fe3
children 065a44375723
comparison
equal deleted inserted replaced
22234:66dd260512a4 22235:63b41167ef1e
55 55
56 // Result of an Eigenvalue computation. 56 // Result of an Eigenvalue computation.
57 57
58 #include "EIG.h" 58 #include "EIG.h"
59 59
60 // Result of a Generalized Singular Value Decomposition.
61
62 #include "dbleGSVD.h"
63 #include "CmplxGSVD.h"
64
65
60 // Result of an LU decomposition. 66 // Result of an LU decomposition.
61 67
62 #include "lu.h" 68 #include "lu.h"
63 69
64 // Result of a QR decomposition. 70 // Result of a QR decomposition.