Linear Interpolation
In mathematics, linear interpolation is a method of curve fitting using linear polynomials to construct new data points within the range of a discrete set of known data points.
XMPro Linear Interpolation Function is used to determine:
X3 value provided (X1,Y1) (X2,Y2) (?,Y3) values. The formula to calculate X3 value is:
X3 = X1 + ((Y3 - Y1) * ((X2 - X1) / (Y2 - Y1))
OR
Y3 value provided (X1,Y1) (X2,Y2)(X3,?) values. The formula to calculate the Y3 value is:
Y3 = Y1 + ((X3 - X1) * ((Y2 - Y1) / (X2 - X1)))
Details for an example and its configuration can be found in the How to Use section.
Pre-requisites
None at this time
Current Version
Download the Linear Interpolation Function v1.13 (Last Update: 22 Jan 2025)
Please contact XMPro if you're looking for an older version of this Agent.
Release Notes
1.13
22 Jan 2025
Repackaged to translate the Agent's properties.
1.12
06 Sep 2022
Repackaged to include the Agents Category.
1.11
22 Feb 2022
Initial Release.
Last updated
Was this helpful?