Inhaltsverzeichnis

sinh()

#include <cmath>

double sinh (double x) 

Liefert den Sinus hyberbolicus von x.

Parameter

x relle Zahl

Ergebnis

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

Siehe auch

cosh(), sin(), tanh().

Beispiel

sinh.cpp
#include <cmath>
#include <iostream>
 
int main()
{
  std::cout << "sinh(1) = " << std::sinh(1) << '\n';
}