List of utility methods to do Kelvin to Celsius Convert
float | convertFromKelvinToCelsius(float value) convert From Kelvin To Celsius return value - 273.15f;
|
float | toCelcius(float temp) to Celcius return (int) Math.round((temp - 32) / 1.8); |
Double | KtoC(Double k) Convert temperature value from Kelvin to degrees Celsius. return k - 273.15;
|