Remove building with NOCRYPTO option
[minix3.git] / lib / libm / complex / cproj.3
blob262211d7171f406c86d7f979d44474b2249ceaa7
1 .\" $NetBSD: cproj.3,v 1.4 2012/12/27 21:34:10 wiz Exp $
2 .\" Copyright (c) 2001-2003 The Open Group, All Rights Reserved
3 .Dd December 27, 2012
4 .Dt CPROJ 3
5 .Os
6 .Sh NAME
7 .Nm cproj ,
8 .Nm cprojf ,
9 .Nm cprojl
10 .Nd complex projection functions
11 .Sh SYNOPSIS
12 .In complex.h
13 .Ft double
14 .Fn cproj "double complex z"
15 .Ft float
16 .Fn cprojf "float complex z"
17 .Ft long double
18 .Fn cprojl "long double complex z"
19 .Sh DESCRIPTION
20 These functions compute a projection of
21 .Ar z
22 onto the Riemann sphere:
23 .Ar z
24 projects to
25 .Ar z ,
26 except that all complex infinities (even those
27 with one infinite part and one NaN part) project to positive infinity on the
28 real axis.
30 .Ar z
31 has an infinite part, then
32 .Fn cproj
33 shall be equivalent to:
34 .Bd -literal -offset indent
35 INFINITY + I * copysign(0.0, cimag(z))
36 .Ed
37 .Sh RETURN VALUES
38 These functions return the value of the projection onto the Riemann sphere.
39 .Sh ERRORS
40 No errors are defined.
41 .Sh SEE ALSO
42 .Xr carg 3 ,
43 .Xr cimag 3 ,
44 .Xr conj 3 ,
45 .Xr creal 3 ,
46 .St -p1003.1-2001
47 .Aq Pa complex.h
48 .Sh COPYRIGHT
49 Portions of this text are reprinted and reproduced in electronic form
50 from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
51 -- Portable Operating System Interface (POSIX), The Open Group Base
52 Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of
53 Electrical and Electronics Engineers, Inc and The Open Group.
54 In the
55 event of any discrepancy between this version and the original IEEE and
56 The Open Group Standard, the original IEEE and The Open Group Standard
57 is the referee document.
58 The original Standard can be obtained online at
59 http://www.opengroup.org/unix/online.html .