Interpolations are required very often by students during their physics workshops. Monumeric makes it piece of cake to manage them. The interpolation method used is the Lagrange method.
In order to get an interpolated/extrapolated value given a data table, you need to proceed as (*):
Here there is the API for the interpolations:
Method | Description |
public static double[] Interpolation (double[] xarr, double[] yarr, double xval) | Interpolation by Lagrange's method. |
(*) Enter the values as described in the regresions section: as in this example: 0.0 10.1 21.234 (one single whitespace between numbers).