| United States-English |
|
|
|
![]() |
HP-UX Reference > rrsqrt(3M)HP-UX 11i Version 1.6: June 2002 |
|
NAMErsqrt(), rsqrtf(), rsqrtl(), rsqrtw(), rsqrtq() — reciprocal square root functions DESCRIPTIONrsqrt() returns the reciprocal of the non-negative square root of x. The expression a * rsqrt(b) is intended as a higher performance alternative to a / sqrt(b). The two expressions are comparably accurate, but do not compute exactly the same value in every case. For example, a * rsqrt(a*a + b*b) can be just slightly greater than 1, in rare cases. rsqrtf() is a float version of rsqrt(); 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 IA-64 systems) rsqrtw() or rsqrtq(), 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. RETURN VALUEIf x is ±0, rsqrt() returns ±INFINITY and raises the divide-by-zero exception. If x is +INFINITY, rsqrt() returns +0. If x is NaN, rsqrt() returns NaN. If x is less than zero, rsqrt() returns NaN and raises the invalid floating-point exception. rsqrt() raises the inexact exception whenever a rounded result does not equal the mathematical result. |
||||||||||||||||||||||||||||
|
|||||||||||||||