csinh(), csinhf(), csinhl() — Calculate the complex hyperbolic sine

Standards

Standards / Extensions C or C++ Dependencies

C99
Single UNIX Specification, Version 3

both

z/OS V1R7
a compiler that is designed
to support C99

Format

#include <complex.h>

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

General description

The csinh() family functions compute the complex hyperbolic sine of z.
Note: The following table shows the viable formats for these functions. See IEEE binary floating-point for more information about IEEE Binary Floating-Point.
Function Hex IEEE
csinh X X
csinhf X X
csinhl X X

Returned value

The csinh() family functions return the complex hyperbolic sine value.

Example

For an example of a similar function see cacos(), cexp() or cpow().

Related information