rawInterpolate

Interpolate in a list of tuples given the index value for the index value to the left

Information

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().

Syntax


Functions.rawInterpolate(x, tuples, jlo);

Examples


rawInterpolate(1.5, {{0,1},{1,2}, {2,4},{3,5}}, 2); // 3.0

See also

interpolate, locate, hunt

Syntax

y = rawInterpolate(x, tuples, jlo)

Inputs (3)

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

Outputs (1)

y

Type: Real

Description: Interpolated value

Revisions

  • Introduced in v2.1.0.