Section courante

A propos

Section administrative du site

Cosh

Cosinus hyperbolique
  Math
C# (C Sharp) System

Syntaxe

static double Cosh(double d);

Paramètres

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

Description

Cette méthode trigonométrique retourne le «Cosinus» hyperbolique.

Exemple

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

Essayer maintenant !
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace cosh
  7. {
  8.     class Program
  9.     {
  10.         static void Main(string[] args)
  11.         {
  12.             double I = 0.0; 
  13.             while(I < Math.PI) { 
  14.                 Console.WriteLine("Cosh(" + (double)I + ")=" + Math.Cosh(I)); 
  15.                 I += 0.1; 
  16.             } 
  17.         }
  18.     }
  19. }

on obtiendra le résultat suivant :

Cosh(0)=1
Cosh(0.1)=1.0050041680558
Cosh(0.2)=1.0200667556191
Cosh(0.3)=1.0453385141289
Cosh(0.4)=1.0810723718385
Cosh(0.5)=1.1276259652064
Cosh(0.6)=1.1854652182423
Cosh(0.7)=1.2551690056309
Cosh(0.8)=1.3374349463048
Cosh(0.9)=1.4330863854488
Cosh(1)=1.5430806348152
Cosh(1.1)=1.6685185538223
Cosh(1.2)=1.8106555673244
Cosh(1.3)=1.9709142303266
Cosh(1.4)=2.1508984653931
Cosh(1.5)=2.3524096152432
Cosh(1.6)=2.5774644711949
Cosh(1.7)=2.82831545789
Cosh(1.8)=3.1074731763173
Cosh(1.9)=3.417731530751
Cosh(2)=3.7621956910836
Cosh(2.1)=4.1443131704103
Cosh(2.2)=4.5679083288982
Cosh(2.3)=5.0372206492688
Cosh(2.4)=5.5569471669655
Cosh(2.5)=6.1322894796637
Cosh(2.6)=6.769005806608
Cosh(2.7)=7.4734686188063
Cosh(2.8)=8.2527284168611
Cosh(2.9)=9.1145842947497
Cosh(3)=10.067661995778
Cosh(3.1)=11.121500241918


Dernière mise à jour : Mardi, le 26 janvier 2016