diff options
author | 2010-07-19 12:48:23 +0000 | |
---|---|---|
committer | 2010-07-19 12:48:23 +0000 | |
commit | 49cbc55e86d7a94a7f9fd650a68e29dc90d5ee6f (patch) | |
tree | a180c583df1ee0ba56170ca6cec2b2bf6d1eae07 /lib/libm/man/cproj.3 | |
parent | remove non-standard section header; from Daniel Dickman (diff) | |
download | wireguard-openbsd-49cbc55e86d7a94a7f9fd650a68e29dc90d5ee6f.tar.xz wireguard-openbsd-49cbc55e86d7a94a7f9fd650a68e29dc90d5ee6f.zip |
Add barebones manual pages for cimag(3), conj(3) and cproj(3)
OK kettenis@ jmc@
Diffstat (limited to 'lib/libm/man/cproj.3')
-rw-r--r-- | lib/libm/man/cproj.3 | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/lib/libm/man/cproj.3 b/lib/libm/man/cproj.3 new file mode 100644 index 00000000000..75fb47dcc2e --- /dev/null +++ b/lib/libm/man/cproj.3 @@ -0,0 +1,61 @@ +.\" $OpenBSD: cproj.3,v 1.1 2010/07/19 12:48:23 millert Exp $ +.\" +.\" Copyright (c) 2010 Todd C. Miller <Todd.Miller@courtesan.com> +.\" +.\" Permission to use, copy, modify, and distribute this software for any +.\" purpose with or without fee is hereby granted, provided that the above +.\" copyright notice and this permission notice appear in all copies. +.\" +.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +.\" +.Dd $Mdocdate: July 19 2010 $ +.Dt CPROJ 3 +.Os +.Sh NAME +.Nm cproj , +.Nm cprojf +.Nd compute projection onto Riemann sphere +.Sh SYNOPSIS +.Fd #include <complex.h> +.Ft double complex +.Fn cproj "double complex z" +.Ft float complex +.Fn cprojf "float complex z" +.Sh DESCRIPTION +The +.Fn cproj +and +.Fn cprojf +functions compute a projection of +.Fa z +onto the Riemann sphere. +.Sh RETURN VALUES +The +.Fn cproj +and +.Fn cprojf +functions return +.Fa z +for all finite complex numbers. +If +.Fa z +has an infinite part (even if the other part is NaN), +they return the equivalent of: +.Bd -literal -offset indent +INFINITY + I * copysign(0.0, cimag(z)) +.Ed +.Sh SEE ALSO +.Xr cimag 3 +.Sh STANDARDS +The +.Fn cproj +and +.Fn cprojf +functions conform to +.St -isoC-99 . |