Created
August 30, 2019 21:23
-
-
Save cwells/0415eac0165d60a9ad032145476843ff to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def scale(x, a, b): | |
# translate x from scale(a) -> scale(b) | |
(a_min, a_max), (b_min, b_max) = a, b | |
return ((b_max - b_min) * (x - a_min)) / (a_max - a_min) + b_min |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment