Table of Contents
Previous Section Next Section

tanh

#include <math.h>float tanhf(float arg);double tanh(double arg);
long double tanhl(long double arg);

tanhf( ) and tanhl( ) were added by C99.

The tanh( ) family of functions returns the hyperbolic tangent of arg.

Related functions are acos( ), asin( ), atan( ), atan2( ), cos( ), sin( ), cosh( ), sinh( ), and tan( ).


Table of Contents
Previous Section Next Section