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 tandg - module scipy.special

Signature de la fonction tandg

Description

tandg.__doc__

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

tandg(x, out=None)

Tangent of 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
    Tangent at the input.

See Also
--------
sindg, cosdg, cotdg

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

It is more accurate than using tangent directly.

>>> x = 180 * np.arange(3)
>>> sc.tandg(x)
array([0., 0., 0.])
>>> np.tan(x * np.pi / 180)
array([ 0.0000000e+00, -1.2246468e-16, -2.4492936e-16])