This is documentation for an old release of SciPy (version 0.9.0). Read this page in the documentation of the latest stable release (version 1.15.0).

scipy.constants.C2K

scipy.constants.C2K(C)

Convert Celsius to Kelvin

Parameters :

C : array_like

Celsius temperature(s) to be converted.

Returns :

K : float or array of floats

Equivalent Kelvin temperature(s).

Notes

Computes K = C + 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 C2K
>>> C2K(np.array([-40, 40.0]))
array([ 233.15,  313.15])

Previous topic

scipy.constants.find

Next topic

scipy.constants.K2C

This Page