Complex.Tanh(Complex) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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)