1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .Dd May 2, 1991
- .Dt TANH 3
- .Os
- .Sh NAME
- .Nm tanh ,
- .Nm tanhf
- .Nd hyperbolic tangent functions
- .Sh LIBRARY
- .Lb libm
- .Sh SYNOPSIS
- .In math.h
- .Ft double
- .Fn tanh "double x"
- .Ft float
- .Fn tanhf "float x"
- .Sh DESCRIPTION
- The
- .Fn tanh
- and the
- .Fn tanhf
- functions compute the hyperbolic tangent of
- .Fa x .
- For a discussion of error due to roundoff, see
- .Xr math 3 .
- .Sh RETURN VALUES
- The
- .Fn tanh
- and the
- .Fn tanhf
- functions return the hyperbolic tangent value.
- .Sh SEE ALSO
- .Xr acos 3 ,
- .Xr asin 3 ,
- .Xr atan 3 ,
- .Xr atan2 3 ,
- .Xr cos 3 ,
- .Xr cosh 3 ,
- .Xr ctanh 3 ,
- .Xr math 3 ,
- .Xr sin 3 ,
- .Xr sinh 3 ,
- .Xr tan 3
- .Sh STANDARDS
- The
- .Fn tanh
- function conforms to
- .St -isoC .
|