Section courante

A propos

Section administrative du site

COSH

Cosinus hyperbolique
PL/1

Syntaxe

Y=COSH(X);

Paramètres

Nom Description
X Ce paramètre permet d'indiquer l'expression contenant le nombre à traiter

Description

Cette fonction trigonométrique permet de connaitre le «Cosinus» hyperbolique.

Exemple

Voici un exemple permet d'afficher les Cosinus hyperbolique inférieurs à π :

  1.  Corps: PROC options(main);
  2.       DECLARE (PI,I) float;
  3.       PI = 3.14159;   
  4.       I = 0;
  5.       DO WHILE (I < PI);
  6.             display('Cosh(' || I || ')=' || cosh(I));
  7.             I = I + 0.1;
  8.       END;
  9.  END Corps;

on obtiendra le résultat suivant :

Cosh( 0.00000E+0000)= 1.00000E+0000
Cosh( 1.00000E-0001)= 1.00500E+0000
Cosh( 2.00000E-0001)= 1.02007E+0000
Cosh( 3.00000E-0001)= 1.04534E+0000
Cosh( 4.00000E-0001)= 1.08107E+0000
Cosh( 5.00000E-0001)= 1.12763E+0000
Cosh( 6.00000E-0001)= 1.18547E+0000
Cosh( 7.00000E-0001)= 1.25517E+0000
Cosh( 8.00000E-0001)= 1.33744E+0000
Cosh( 9.00000E-0001)= 1.43309E+0000
Cosh( 1.00000E+0000)= 1.54308E+0000
Cosh( 1.10000E+0000)= 1.66852E+0000
Cosh( 1.20000E+0000)= 1.81066E+0000
Cosh( 1.30000E+0000)= 1.97091E+0000
Cosh( 1.40000E+0000)= 2.15090E+0000
Cosh( 1.50000E+0000)= 2.35241E+0000
Cosh( 1.60000E+0000)= 2.57747E+0000
Cosh( 1.70000E+0000)= 2.82832E+0000
Cosh( 1.80000E+0000)= 3.10747E+0000
Cosh( 1.90000E+0000)= 3.41773E+0000
Cosh( 2.00000E+0000)= 3.76220E+0000
Cosh( 2.10000E+0000)= 4.14431E+0000
Cosh( 2.20000E+0000)= 4.56791E+0000
Cosh( 2.30000E+0000)= 5.03722E+0000
Cosh( 2.40000E+0000)= 5.55695E+0000
Cosh( 2.50000E+0000)= 6.13229E+0000
Cosh( 2.60000E+0000)= 6.76900E+0000
Cosh( 2.70000E+0000)= 7.47347E+0000
Cosh( 2.80000E+0000)= 8.25272E+0000
Cosh( 2.90000E+0000)= 9.11458E+0000
Cosh( 3.00000E+0000)= 1.00677E+0001
Cosh( 3.10000E+0000)= 1.11215E+0001


Dernière mise à jour : Lundi, le 13 octobre 2014