Compléments pour Microsoft Access

http://access.fr.free.fr/

Tangente Hyperbolique (Math)

Description 

Cette fonction permet de calculer la Tangente Hyperbolique d'un nombre.

 
Synthaxe 

Expression_Numérique = HTan (x)

La synthaxe de la fonction HTan comprend l'élément suivant :

ElémentsDescription

x

Expression numérique pour laquelle on souhaite calculer la Tangente Hyperbolique.
 
Exemple 

Aucun exemple disponible pour le moment.

 
Code de la fonction 


Function HTan(X As Double) As Double
    'Tangente Hyperbolique = HSin(X)/HCos(X)
    HTan = (Exp(X) - Exp(-X)) / (Exp(X) + Exp(-X))
End Function