Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Module « scipy.special »

Fonction cotdg - module scipy.special

Signature de la fonction cotdg

Description

cotdg.__doc__

cotdg(x, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature, extobj])

cotdg(x, out=None)

Cotangent of the angle `x` given in degrees.

Parameters
----------
x : array_like
    Angle, given in degrees.
out : ndarray, optional
    Optional output array for the function results.

Returns
-------
scalar or ndarray
    Cotangent at the input.

See Also
--------
sindg, cosdg, tandg

Examples
--------
>>> import scipy.special as sc

It is more accurate than using cotangent directly.

>>> x = 90 + 180 * np.arange(3)
>>> sc.cotdg(x)
array([0., 0., 0.])
>>> 1 / np.tan(x * np.pi / 180)
array([6.1232340e-17, 1.8369702e-16, 3.0616170e-16])