comparison liboctave/numeric/module.mk @ 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 659731a4563f
children 065a44375723
comparison
equal deleted inserted replaced
22234:66dd260512a4 22235:63b41167ef1e
6 liboctave/numeric/Quad-opts.h 6 liboctave/numeric/Quad-opts.h
7 7
8 LIBOCTAVE_OPT_IN = $(LIBOCTAVE_OPT_INC:.h=.in) 8 LIBOCTAVE_OPT_IN = $(LIBOCTAVE_OPT_INC:.h=.in)
9 9
10 NUMERIC_INC = \ 10 NUMERIC_INC = \
11 liboctave/numeric/CmplxGSVD.h \
11 liboctave/numeric/CollocWt.h \ 12 liboctave/numeric/CollocWt.h \
12 liboctave/numeric/DAE.h \ 13 liboctave/numeric/DAE.h \
13 liboctave/numeric/DAEFunc.h \ 14 liboctave/numeric/DAEFunc.h \
14 liboctave/numeric/DAERT.h \ 15 liboctave/numeric/DAERT.h \
15 liboctave/numeric/DAERTFunc.h \ 16 liboctave/numeric/DAERTFunc.h \
16 liboctave/numeric/DASPK.h \ 17 liboctave/numeric/DASPK.h \
17 liboctave/numeric/DASRT.h \ 18 liboctave/numeric/DASRT.h \
18 liboctave/numeric/DASSL.h \ 19 liboctave/numeric/DASSL.h \
20 liboctave/numeric/dbleGSVD.h \
19 liboctave/numeric/DET.h \ 21 liboctave/numeric/DET.h \
20 liboctave/numeric/EIG.h \ 22 liboctave/numeric/EIG.h \
21 liboctave/numeric/LSODE.h \ 23 liboctave/numeric/LSODE.h \
22 liboctave/numeric/ODE.h \ 24 liboctave/numeric/ODE.h \
23 liboctave/numeric/ODEFunc.h \ 25 liboctave/numeric/ODEFunc.h \
54 liboctave/numeric/sparse-lu.h \ 56 liboctave/numeric/sparse-lu.h \
55 liboctave/numeric/sparse-qr.h \ 57 liboctave/numeric/sparse-qr.h \
56 liboctave/numeric/svd.h 58 liboctave/numeric/svd.h
57 59
58 NUMERIC_SRC = \ 60 NUMERIC_SRC = \
61 liboctave/numeric/CmplxGSVD.cc \
59 liboctave/numeric/CollocWt.cc \ 62 liboctave/numeric/CollocWt.cc \
60 liboctave/numeric/DASPK.cc \ 63 liboctave/numeric/DASPK.cc \
61 liboctave/numeric/DASRT.cc \ 64 liboctave/numeric/DASRT.cc \
62 liboctave/numeric/DASSL.cc \ 65 liboctave/numeric/DASSL.cc \
66 liboctave/numeric/dbleGSVD.cc \
63 liboctave/numeric/EIG.cc \ 67 liboctave/numeric/EIG.cc \
64 liboctave/numeric/LSODE.cc \ 68 liboctave/numeric/LSODE.cc \
65 liboctave/numeric/ODES.cc \ 69 liboctave/numeric/ODES.cc \
66 liboctave/numeric/Quad.cc \ 70 liboctave/numeric/Quad.cc \
67 liboctave/numeric/aepbalance.cc \ 71 liboctave/numeric/aepbalance.cc \