Skip to content

Instantly share code, notes, and snippets.

@cwells
Created August 30, 2019 21:23
Show Gist options
  • Save cwells/0415eac0165d60a9ad032145476843ff to your computer and use it in GitHub Desktop.
Save cwells/0415eac0165d60a9ad032145476843ff to your computer and use it in GitHub Desktop.
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