Inhaltsverzeichnis

tanh()

#include <cmath>

double tanh (double x) 

Liefert den Tangens hyberbolicus von x.

Parameter

x relle Zahl

Ergebnis

Rückgabewert: sinh(x)/cosh(x).

Siehe auch

cosh(), sinh(), tan().

Beispiel

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