#1546 closed defect (fixed)
Error of Interpolation function
Reported by: | Luis Artiles | Owned by: | Víctor de Buen Remiro |
---|---|---|---|
Priority: | normal | Milestone: | Multivariate interpolation methods |
Component: | Kernel | Version: | 3.1 |
Severity: | major | Keywords: | |
Cc: | josp@… |
Description
The command
Serie intser = StdLib::Interpolate::Scalar::fillMissAllSer (auxser, "linear", 0);
Fails. I think problem is on line 15
Real eval(Real r) { _interpolation(0,x_) };
within function
NameBlock buildHandler(Matrix x, Matrix y, Text method_, Real order)
of file
C:/Program Files/Tol-Project/tolbase-v3.1/bin/stdlib/math/interpolate/_scalar.tol
that must be changed by
Real eval(Real r) { _interpolation(0,r) };
I have corrected for myself and it works.
Regards,
Artiles
Note: See
TracTickets for help on using
tickets.
It is indeed what you say, but it is a problem already solved.
In fact now the code is in the new package StdLib.
Anyway thank you very much for the warning.