csinhf(3) - Linux man page

Name

csinh, csinhf, csinhl - complex hyperbolic sine

Synopsis

#include <complex.h>

double complex csinh(double complex z);
float complex csinhf(float complex z);
long double complex csinhl(long double complex z);

Link with -lm.

Description

The complex hyperbolic sine function is defined as:
csinh(z) = (exp(z)-exp(-z))/2

Versions

These functions first appeared in glibc in version 2.1.

Conforming to

C99.

See Also

cabs(3), casinh(3), ccosh(3), ctanh(3), complex(7)