cos.3m (2010 09)

c
cos(3M) cos(3M)
NAME
cos( ), cosf( ), cosl( ), cosw( ), cosq( ) - cosine functions
SYNOPSIS
#include <math.h>
double cos(double x);
float cosf(float x);
HP Integrity Server Only
long double cosl(long double x);
extended cosw(extended x);
quad cosq(quad x);
DESCRIPTION
cos() returns the cosine of x (x specified in radians).
On PA-RISC systems,
cos() may lose accuracy when x is far from zero.
cosf() is a float version of cos(); it takes a
float argument and returns a float result.
Integrity Server Only
cosl() is a long double version of cos(); it takes a long double argument and returns a
long double result.
cosw() is an extended version of cos(); it takes an extended argument and returns an
extended result.
cosq() is equivalent to cosl() on HP-UX systems.
USAGE
To 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)
cosw() or cosq(), 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 Only
Millicode versions of the
cos() and cosf() functions are available. Millicode versions of math library
functions are usually faster than their counterparts in the standard library. To use these versions, com-
pile your program with the +Olibcalls or the +Oaggressive optimization option.
For special cases, the millicode versions return the same values as their standard library counterparts
(see the RETURN VALUE section).
RETURN VALUE
cos(±0) returns 1.
If x is ±INFINITY,
cos() returns NaN and raises the invalid exception.
If x is NaN,
cos() returns NaN.
When it raises no other exception, whether
cos() raises the inexact exception is unspecified.
ERRORS
No errors are defined.
SEE ALSO
acos(3M), asin(3M), atan(3M), atan2(3M), ccos(3M), cosd(3M), sin(3M), sincos(3M), tan(3M), math(5).
STANDARDS CONFORMANCE
cos() : SVID3, XPG4.2, ANSI C, ISO/IEC C99 (including Annex F, ‘‘IEC 60559 floating-point arith-
metic’’)
HP-UX 11i Version 3: September 2010 1 Hewlett-Packard Company 1

Summary of content (2 pages)