United States-English |
|
|
HP-UX Reference > Ccot(3M)HP Integrity Server OnlyHP-UX 11i Version 3: February 2007 |
|
NAMEcot(), cotf(), cotl(), cotw(), cotq() — cotangent functions SYNOPSIS#include <math.h> double cot(double x); float cotf(float x); long double cotl(long double x); extended cotw(extended x); quad cotq(quad x); DESCRIPTIONThese functions are available only for Integrity servers. cot() returns the cotangent of x (x specified in radians). cotf() is a float version of cot(); it takes a float argument and returns a float result. cotl() is a long double version of cot(); it takes a long double argument and returns a long double result. cotw() is an extended version of cot(); it takes an extended argument and returns an extended result. cotq() is equivalent to cotl() on HP-UX systems. USAGETo use these functions, compile either with the default -Ae option or with the -Aa and the -D_HPUX_SOURCE options. To use cotw() or cotq(), 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. |
Printable version | ||
|