OSDN Git Service

Import translated manuals from JM CVS Repository.
[linuxjm/jm.git] / manual / LDP_man-pages / original / man3 / cproj.3
1 .\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
2 .\" Distributed under GPL
3 .\"
4 .TH CPROJ 3 2008-08-11 "" "Linux Programmer's Manual"
5 .SH NAME
6 cproj, cprojf, cprojl \- project into Riemann Sphere
7 .SH SYNOPSIS
8 .B #include <complex.h>
9 .sp
10 .BI "double complex cproj(double complex " z ");"
11 .br
12 .BI "float complex cprojf(float complex " z ");"
13 .br
14 .BI "long double complex cprojl(long double complex " z ");"
15 .sp
16 Link with \fI\-lm\fP.
17 .SH DESCRIPTION
18 This function projects a point in the plane onto the surface of a
19 Riemann Sphere, the one-point compactification of the complex plane.
20 Each finite point
21 .I z
22 projects to
23 .I z
24 itself.
25 Every complex infinite value is projected to a single infinite value,
26 namely to positive infinity on the real axis.
27 .SH VERSIONS
28 These functions first appeared in glibc in version 2.1.
29 .SH "CONFORMING TO"
30 C99.
31 .SH NOTES
32 The glibc implementation is broken and does something entirely different.
33 .SH "SEE ALSO"
34 .BR cabs (3),
35 .BR complex (7)