Convert Celsius to Fahrenheit
Parameters : | C : float-like scalar or array-like
|
---|---|
Returns : | F : float or a numpy array of floats, corresponding to type of Parameters
|
Notes
Computes F = 1.8 * C + 32
Examples
>>> from scipy.constants.constants import C2F
>>> C2F(np.array([-40, 40.0]))
array([ -40., 104.])