|
ADC Home > Reference Library > Reference > Mac OS X > Mac OS X Man Pages
|
|
This document is a Mac OS X manual page. Manual pages are a command-line technology for providing documentation. You can view these manual pages locally using the man(1) command. These manual pages come from many different sources, and thus, have a variety of writing styles. For more information about the manual page format, see the manual page for manpages(5). |
CONJ(3) BSD Library Functions Manual CONJ(3)
NAME
conj -- complex conjugation function
SYNOPSIS
#include <complex.h>
double complex
conj(double complex z);
long double complex
conjl(long double complex z);
float complex
conjf(float complex z);
DESCRIPTION
conj(z) computes the complex conjugate of a complex floating-point number z.
If z = x+iy, then conj(z) = x-iy.
NOTES
If y is NaN, conj(x+yi) = x-yi; the sign bit of the NaN has been changed.
SEE ALSO
complex(3)
STANDARDS
The conj() function conforms to ISO/IEC 9899:1999(E).
4th Berkeley Distribution October 10, 2006 4th Berkeley Distribution
|
|