OSDN Git Service

647ec36d419d6b8a30685f8324e9f088a055b4ff
[linuxjm/LDP_man-pages.git] / original / man3 / csin.3
1 .\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
2 .\"
3 .\" %%%LICENSE_START(GPL_NOVERSION_ONELINE)
4 .\" Distributed under GPL
5 .\" %%%LICENSE_END
6 .\"
7 .TH CSIN 3 2008-08-11 "" "Linux Programmer's Manual"
8 .SH NAME
9 csin, csinf, csinl \- complex sine function
10 .SH SYNOPSIS
11 .B #include <complex.h>
12 .sp
13 .BI "double complex csin(double complex " z ");"
14 .br
15 .BI "float complex csinf(float complex " z );
16 .br
17 .BI "long double complex csinl(long double complex " z ");"
18 .sp
19 Link with \fI\-lm\fP.
20 .SH DESCRIPTION
21 The complex sine function is defined as:
22 .nf
23
24     csin(z) = (exp(i * z) \- exp(\-i * z)) / (2 * i)
25 .fi
26 .SH VERSIONS
27 These functions first appeared in glibc in version 2.1.
28 .SH CONFORMING TO
29 C99.
30 .SH SEE ALSO
31 .BR cabs (3),
32 .BR casin (3),
33 .BR ccos (3),
34 .BR ctan (3),
35 .BR complex (7)
36 .SH COLOPHON
37 This page is part of release 3.67 of the Linux
38 .I man-pages
39 project.
40 A description of the project,
41 information about reporting bugs,
42 and the latest version of this page,
43 can be found at
44 \%http://www.kernel.org/doc/man\-pages/.