Files
30-seconds-of-code/snippets/num_to_range.md
Isabelle Viktoria Maciohsek 4c07c3ceb0 Update num_to_range.md
Fixes #443
2021-04-05 18:25:46 +03:00

380 B

title, tags
title tags
num_to_range math,beginner

Maps a number from one range to another range.

  • Return num mapped between outMin-outMax from inMin-inMax.
def num_to_range(num, inMin, inMax, outMin, outMax):
  return outMin + (float(num - inMin) / float(inMax - inMin) * (outMax
                  - outMin))
num_to_range(5, 0, 10, 0, 100) # 50.0