namespace cpp {}

C++ lernen, kennen, anwenden

Benutzer-Werkzeuge

Webseiten-Werkzeuge


kennen:lib:cosh

cosh()

#include <cmath>

double cosh (double x) 

Liefert den hyperbolischen Kosinus von x.

Parameter

x relle Zahl

Ergebnis

Rückgabewert: (exp(x)+exp(-x))/2.

Siehe auch

Beispiel

cosh.cpp
#include <cmath>
#include <iostream>
 
int main()
{
  std::cout << "cosh(0) = " << std::cosh(0) << '\n';
}
kennen/lib/cosh.txt · Zuletzt geändert: 2019-11-20 15:07 von 127.0.0.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki