Linear Interpolation Functions
Piecewise-linear interpolation, derivative, integral and curve intersection.
5 functions
PO.Spline.Linear.Interp(x_values, y_values, t)
Calculates interpolated value using linear spline interpolation.
PO.Spline.Linear.Diff(x_values, y_values, t)
Calculates first derivative using linear spline interpolation.
PO.Spline.Linear.Integ(x_values, y_values, t)
Calculates definite integral using linear spline interpolation from the start up to point t.
PO.Spline.Linear.IntegT1T2(x_values, y_values, t1, t2)
Calculates definite integral using linear spline interpolation from point t1 to point t2.
PO.Spline.Linear.Intersect(x_values_1, y_values_1, x_values_2, y_values_2)
Calculates x value of intersection point between two linear splines.