Hi all, I am just looking for the generic name of a mathematical function that will return the ratio of a reference value between a supplied low and high limit. This is probably best illustrated by example:
1st value is reference, second value is low, and third value is high
SomeFunction(5, 0, 10) = 0.5
SomeFunction(12, 10, 20) = 0.2
SomeFunction(40, 20, 40) = 1
Make sense?
Thanks!