rawInterpolateInterpolate in a list of tuples given the index value for the index value to the left |
![]() |
This information is part of the Business Simulation Library (BSL). Please support this work and ► donate.
The output y is the interpolated value given a list of tuples (tuples = { {x1,y1}, {x2,y2}, ...}
) and the index value jlo
as a result from the functions hunt()
or locate()
.
Functions.rawInterpolate(x, tuples, jlo);
rawInterpolate(1.5, {{0,1},{1,2}, {2,4},{3,5}}, 2); // 3.0
x |
Type: Real Description: Value to locate in a list |
---|---|
tuples |
Type: Real[:,2] Description: Ordered list of values |
jlo |
Type: Integer Description: Index value to the left of x |
y |
Type: Real Description: Interpolated value |
---|