Convert Kelvin to Celsius
Parameters : | K : float-like scalar or array-like
|
---|---|
Returns : | C : float or a numpy array of floats, corresponding to type of Parameters
|
Notes
Computes C = K - zero_Celsius where zero_Celsius = 273.15, i.e., (the absolute value of) temperature “absolute zero” as measured in Celsius.
Examples
>>> from scipy.constants.constants import K2C
>>> K2C(np.array([233.15, 313.15]))
array([-40., 40.])