interpolate
Performs higher order interpolation. Not all interpolators need to support high-order interpolation, if this function remains undefined on implementing objects, interpolateOrderZero will be used instead.
Return
The array of interpolated values, or the result parameter if one was provided.
Parameters
The independent variable for which the dependent variables will be interpolated.
The array of independent variables to use to interpolate. The values in this array must be in increasing order and the same value must not occur twice in the array.
The array of dependent variables to use to interpolate. For a set of three dependent values (p,q,w) at time 1 and time 2 this should be as follows: {p1, q1, w1, p2, q2, w2}.
The number of dependent variable values in yTable corresponding to each independent variable value in xTable.
The number of derivatives supplied for input.
The number of derivatives desired for output.
An existing array into which to store the result.