csin(), csinf(), csinl() — Calculate the complex 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 csin(double complex z);
float complex csinf(float complex z);
long double complex csinl(long double complex z);

General description

The csin() family of functions compute the complex 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
csin X X
csinf X X
csinl X X

Returned value

The csin() family of functions return the complex sine value.

Example

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

Related information