Android Utililty Methods Kelvin to Fahrenheit Convert

List of utility methods to do Kelvin to Fahrenheit Convert

Description

The list of methods to do Kelvin to Fahrenheit Convert are organized into topic(s).

Method

floatconvertFromKelvinToFahrenheit(float value)
convert From Kelvin To Fahrenheit
return convertFromCelsiusToFahrenheit(convertFromKelvinToCelsius(value));
DoubleKtoF(Double k)
Convert temperature value from Kelvin to degrees Farenheit.
return k * 9.0 / 5 - 459.67;