编号 |
库功能及说明 |
1 |
双 acos(双 __x)
acos() 函数计算 __x 的反余弦主值。返回值的范围是 [0, pi] 弧度。如果参数不在 [-1, +1] 范围内,则会发生域错误。
|
2 |
双阿辛 (双 __x)
asin() 函数计算 __x 的反正弦主值。返回值的范围为 [-pi/2, pi/2] 弧度。如果参数不在 [-1, +1] 范围内,则会发生域错误。
|
3 |
双阿坦(双 __x)
atan() 函数计算 __x 的反正切主值。返回值的范围为 [-pi/2, pi/2] 弧度。
|
4 |
双 atan2(双 __y,双 __x)
The atan2() function computes the principal value of the arc tangent of __y / __x, using the signs of both arguments to determine the quadrant of the return value. The returned value is in the range [-pi, +pi] radians.
|
5 |
double cbrt (double __x)
The cbrt() function returns the cube root of __x.
|
6 |
double ceil (double __x)
The ceil() function returns the smallest integral value greater than or equal to __x, expressed as a floating-point number.
|
7 |
static double copysign (double __x, double __y)
The copysign() function returns __x but with the sign of __y. They work even if __x or __y are NaN or zero.
|
8 |
double cos(double __x)
The cos() function returns the cosine of __x, measured in radians.
|
9 |
double cosh (double __x)
The cosh() function returns the hyperbolic cosine of __x.
|
10 |
double exp (double __x)
The exp() function returns the exponential value of __x.
|
11 |
double fabs (double __x)
The fabs() function computes the absolute value of a floating-point number __x.
|
12 |
double fdim (double __x, double __y)
The fdim() function returns max(__x - __y, 0). If __x or __y or both are NaN, NaN is returned.
|
13 |
double floor (double __x)
The floor() function returns the largest integral value less than or equal to __x, expressed as a floating-point number.
|
14 |
double fma (double __x, double __y, double __z)
The fma() function performs floating-point multiply-add. This is the operation (__x * __y) + __z, but the intermediate result is not rounded to the destination type. This can sometimes improve the precision of a calculation.
|
15 |
double fmax (double __x, double __y)
The fmax() function returns the greater of the two values __x and __y. If an argument is NaN, the other argument is returned. If both the arguments are NaN, NaN is returned.
|
16 |
double fmin (double __x, double __y)
The fmin() function returns the lesser of the two values __x and __y. If an argument is NaN, the other argument is returned. If both the arguments are NaN, NaN is returned.
|
17 |
double fmod (double __x, double__y)
The function fmod() returns the floating-point remainder of __x / __y.
|
18 |
double frexp (double __x, int * __pexp)
The frexp() function breaks a floating-point number into a normalized fraction and an integral power of 2. It stores the integer in the int object pointed to by __pexp. If __x is a normal float point number, the frexp() function returns the value v, such that v has a magnitude in the interval [1/2, 1) or zero, and __x equals v times 2 raised to the power __pexp. If __x is zero, both parts of the result are zero. If __x is not a finite number, the frexp() returns __x as is and stores 0 by __pexp.
Note − This implementation permits a zero pointer as a directive to skip a storing the exponent.
|
19 |
double hypot (double __x, double__y)
The hypot() function returns sqrt(__x*__x + __y*__y). This is the length of the hypotenuse of a right triangle with sides of length __x and __y, or the distance of the point (__x, __y) from the origin. Using this function instead of the direct formula is wise, since the error is much smaller. No underflow with small __x and __y. No overflow if result is in range.
|
20 |
static int isfinite (double __x)
The isfinite() function returns a nonzero value if __x is finite: not plus or minus infinity, and not NaN.
|
21 |
int isinf (double __x)
The function isinf() returns 1 if the argument __x is positive infinity, -1 if __x is negative infinity, and 0 otherwise.
Note − The GCC 4.3 can replace this function with inline code that returns the 1 value for both infinities (gcc bug #35509).
|
22 |
int isnan (double __x)
The function isnan() returns 1 if the argument __x represents a "not-a-number" (NaN) object, otherwise 0.
|
23 |
double ldexp (double __x, int __exp )
The ldexp() function multiplies a floating-point number by an integral power of 2. It returns the value of __x times 2 raised to the power __exp.
|
24 |
double log (double __x)
The log() function returns the natural logarithm of argument __x.
|
25 |
double log10(double __x)
The log10() function returns the logarithm of argument __x to base 10.
|
26 |
long lrint (double __x)
The lrint() function rounds __x to the nearest integer, rounding the halfway cases to the even integer direction. (That is both 1.5 and 2.5 values are rounded to 2). This function is similar to rint() function, but it differs in type of return value and in that an overflow is possible.
Returns
The rounded long integer value. If __x is not a finite number or an overflow, this realization returns the LONG_MIN value (0x80000000).
|
27 |
long lround (double __x)
The lround() function rounds __x to the nearest integer, but rounds halfway cases away from zero (instead of to the nearest even integer). This function is similar to round() function, but it differs in type of return value and in that an overflow is possible.
Returns
The rounded long integer value. If __x is not a finite number or an overflow was, this realization returns the LONG_MIN value (0x80000000).
|
28 |
double modf (double __x, double * __iptr )
The modf() function breaks the argument __x into integral and fractional parts, each of which has the same sign as the argument. It stores the integral part as a double in the object pointed to by __iptr.
The modf() function returns the signed fractional part of __x.
Note − This implementation skips writing by zero pointer. However, the GCC 4.3 can replace this function with inline code that does not permit to use NULL address for the avoiding of storing.
|
29 |
float modff (float __x, float * __iptr)
The alias for modf().
|
30 |
double pow (double __x, double __y)
The function pow() returns the value of __x to the exponent __y.
|
31 |
double round (double __x)
The round() function rounds __x to the nearest integer, but rounds halfway cases away from zero (instead of to the nearest even integer). Overflow is impossible.
Returns
The rounded value. If __x is an integral or infinite, __x itself is returned. If __x is NaN, then NaN is returned.
|
32 |
int signbit (double __x)
The signbit() function returns a nonzero value if the value of __x has its sign bit set. This is not the same as `__x < 0.0', because IEEE 754 floating point allows zero to be signed. The comparison `-0.0 < 0.0' is false, but `signbit (-0.0)' will return a nonzero value.
|
33 |
double sin (double __x)
The sin() function returns the sine of __x, measured in radians.
|
34 |
double sinh (double __x)
The sinh() function returns the hyperbolic sine of __x.
|
35 |
double sqrt (double __x)
The sqrt() function returns the non-negative square root of __x.
|
36 |
double square (double __x)
The function square() returns __x * __x.
Note − This function does not belong to the C standard definition.
|
37 |
double tan (double __x)
The tan() function returns the tangent of __x, measured in radians.
|
38 |
double tanh ( double __x)
The tanh() function returns the hyperbolic tangent of __x.
|
39 |
double trunc (double __x)
The trunc() function rounds __x to the nearest integer not larger in absolute value.
|