System Grab Bag

View all man pages from Linux (or from all projects)

Name

ctanh, ctanhf, ctanhl - complex hyperbolic tangent

Library

Math library ( libm ", " -lm )

Synopsis

#include <complex.h> 
double complex ctanh(double complex  z );
float complex ctanhf(float complex z );
long double complex ctanhl(long double complex z );

Description

These functions calculate the complex hyperbolic tangent of z.

The complex hyperbolic tangent function is defined mathematically as:

ctanh(z) = csinh(z) / ccosh(z)

Attributes

For an explanation of the terms used in this section, see attributes(7). allbox; lbx lb lb T{ ctanh()ctanhf()ctanhl()
InterfaceAttributeValue
T}Thread safetyMT-Safe

Standards

C11, POSIX.1-2008.

History

glibc 2.1. C99, POSIX.1-2001.

See Also

  1. cabs(3),
  2. catanh(3),
  3. ccosh(3),
  4. csinh(3),
  5. complex(7)