Partager via


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 méthode Tanh pour les nombres complexes correspond à la méthode Math.Tanh pour les nombres réels.

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

Sinh(value)/Cosh(value)

S’applique à

Voir aussi