Hey I have an equation that I need to figure out it is chart based math where you have two points on the chart and need to get the rest of the values:
I am building a javascript page that takes the takes the two points on a chart but needs to spit out any position on the chart.
It is for extrapolating the sight settings on an archery site based on knowing two distances and sight settings:
Max Setting on sight: Var = 120;
Distances 18M 20M 25M 30M 35M 40M 45M 50M 55M 60M 70M 90M
The user would provide the following via form elements.
Shortest recorded sight setting Yardage and Site setting position E.G. 45M = 50 Longest recorded sight setting Yardage and Site setting position E.G. 70M = 105
Max Setting on site = 120
Distance they would like to get an estimation for (same list as above)
What the equation would do is guess the site setting for the yardage selected as long as they have entered the two previous settings.
For some reason I am lost trying to figure out the math for this.