Compléments pour Microsoft Access

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

Cotangente Hyperbolique (Math)

Description 

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

 
Synthaxe 

Expression_Numérique = HCoTan (x)

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

ElémentsDescription

x

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

Aucun exemple disponible pour le moment.

 
Code de la fonction 


Function HCotan(X As Double) As Double
    'Cotangente Hyperbolique = 1/HTan(X)
    HCotan = (Exp(X) + Exp(-X)) / (Exp(X) - Exp(-X))
End Function