Complex.Tanh(Complex) Méthode

Définition

Retourne la tangente hyperbolique du nombre complexe spécifié.

public:
 static System::Numerics::Complex Tanh(System::Numerics::Complex value);
public static System.Numerics.Complex Tanh (System.Numerics.Complex value);
static member Tanh : System.Numerics.Complex -> System.Numerics.Complex
Public Shared Function Tanh (value As Complex) As Complex

Paramètres

value
Complex

Nombre complexe.

Retours

Tangente hyperbolique de value.

Remarques

La Tanh méthode des nombres complexes correspond à la Math.Tanh méthode des nombres réels.

La Tanh méthode utilise la formule suivante pour calculer la tangente hyperbolique du nombre valuecomplexe :

Sinh(value) / Cosh(value)

S’applique à

Voir aussi