[Solved] How to interpolate through 3 points/numbers with a defined number of samples? (in c#)
This is a generalized solution that works by these principles: Performs linear interpolation It calculates a “floating point index” into the input array This index is used to select 1 (if the fractional parts is very close to 0) or 2 numbers from the input array The integer part of this index is the base … Read more