United States-English |
|
|
HP-UX Reference > Ccarg(3M)HP Integrity Server OnlyHP-UX 11i Version 3: February 2007 |
|
NAMEcarg(), cargf(), cargl(), cargw(), cargq() — complex argument (also called phase angle) functions SYNOPSIS#include <complex.h> double carg(double complex z); float cargf(float complex z); long double cargl(long double complex z); extended cargw(extended complex z); quad cargq(quad complex z); DESCRIPTIONThese functions are available only for Integrity servers. carg() returns the complex argument of z in the interval [-pi,+pi]. cargf() is a float complex version of carg(); it takes a float complex argument and returns a float result. cargl() is a long double complex version of carg(); it takes a long double complex argument and returns a long double result. cargw() is an extended complex version of carg(); it takes an extended complex argument and returns an extended result. cargq() is equivalent to cargl() on HP-UX systems. USAGETo use these functions, compile with the default -Ae option. To use cargw() or cargq(), compile with the -fpwidetypes option. Make sure your program includes <complex.h>. Link in the math library by specifying -lm on the compiler or linker command line. |
Printable version | ||
|