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

scipy.constants.F2C

scipy.constants.F2C(F)

Convert Fahrenheit to Celsius

Parameters :

F : float-like scalar or array-like

Fahrenheit temperature(s) to be converted

Returns :

C : float or a numpy array of floats, corresponding to type of Parameters

Equivalent Celsius temperature(s)

Notes

Computes C = (F - 32) / 1.8

Examples

>>> from scipy.constants.constants import F2C
>>> F2C(np.array([-40, 40.0]))
array([-40.        ,   4.44444444])

Previous topic

scipy.constants.K2C

Next topic

scipy.constants.C2F

This Page