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).
Convert Celsius to Fahrenheit
Parameters : | C : array_like
|
---|---|
Returns : | F : float or array of floats
|
Notes
Computes F = 1.8 * C + 32.
Examples
>>> from scipy.constants.constants import C2F
>>> C2F(np.array([-40, 40.0]))
array([ -40., 104.])