Skip to content

Instantly share code, notes, and snippets.

Created August 12, 2012 01:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/3328517 to your computer and use it in GitHub Desktop.
Save anonymous/3328517 to your computer and use it in GitHub Desktop.
Fahrenheit to Celsius: ((Fahrenheit - 32) * (5/9))
Fahrenhiet to Kelvin: ((Fahrenheit + 459.67) * (5/9))
Fahrenhiet to Rankine: (Fahrenheit + 459.67)
Celsius to Fahrenheit: ((Celsius * (9/5) + 32))
Celsius to Kelvin: (Celsius + 273.15)
Celsius to Rankine: ((C + 273.15) * (9/5))
Kelvin to Fahrenheit: (K * (9/5) - 459.67)
Kelvin to Celsius: (Kelvin - 273.15)
Kelvin to Rankine: ((Kelvin * (9/5))
Rankine to Fahrenheit: (Rankine - 459.67)
Rankine to Celsius: ((Rankine - 491.67) * (5/9))
Rankine to Kelvin: (Rankine * (5/9))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment