United States-English |
|
|
HP-UX Reference > Aacos(3M)HP-UX 11i Version 3: February 2007 |
|
NAMEacos(), acosf(), acosl(), acosw(), acosq() — arccosine functions DESCRIPTIONacos() returns the arccosine of x, in the range 0 to π. acosf() is a float version of acos(); it takes a float argument and returns a float result. USAGETo use these functions compile either with the default -Ae option or with the -Aa and the -D_HPUX_SOURCE options. To use (for Integrity servers) acosw() or acosq(), compile also with the -fpwidetypes option. To use any of these functions, make sure your program includes <math.h>, and link in the math library by specifying -lm on the compiler or linker command line. For more information, see the HP-UX floating-point guide for HP Integrity servers at the following site: http://www.hp.com/go/fp. PA-RISC System OnlyMillicode versions of the acos() and acosf() functions are available. Millicode versions of math library functions are usually faster than their counterparts in the standard library. To use these versions, compile your program with the +Olibcalls or the +Oaggressive optimization option. For special cases, the millicode versions return the values described in the RETURN VALUE section, but do not set errno. RETURN VALUEacos() returns +0. If the magnitude of x is greater than one, acos() returns NaN and raises the invalid exception. If x is NaN, acos() returns NaN. When it raises no other exception, whether acos() raises the inexact exception is unspecified. |
Printable version | ||
|