Jump to content United States-English
HP.com Home Products and Services Support and Drivers Solutions How to Buy
» Contact HP
More options
HP.com home
HP-UX Reference > C

carg(3M)

HP Integrity Server Only
HP-UX 11i Version 3: February 2007
» 

Technical documentation

» Feedback
Content starts here

 » Table of Contents

 » Index

NAME

carg(), 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);

DESCRIPTION

These 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.

USAGE

To 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.

RETURN VALUE

carg(z) returns the same values and raises the same exceptions as atan2(cimag(z),creal(z)).

ERRORS

No errors are defined.

STANDARDS CONFORMANCE

carg(), cargf(), cargl() : ISO/IEC C99 (including Annex G, ``IEC 60559-compatible complex arithmetic'')

Printable version
Privacy statement Using this site means you accept its terms Feedback to webmaster
© 1983-2007 Hewlett-Packard Development Company, L.P.