Android Utililty Methods Kelvin to Celsius Convert

List of utility methods to do Kelvin to Celsius Convert

Description

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

Method

floatconvertFromKelvinToCelsius(float value)
convert From Kelvin To Celsius
return value - 273.15f;
floattoCelcius(float temp)
to Celcius
return (int) Math.round((temp - 32) / 1.8);
DoubleKtoC(Double k)
Convert temperature value from Kelvin to degrees Celsius.
return k - 273.15;