comparison lispref/numbers.texi @ 25454:80ac191b6d2b

*** empty log message ***
author Karl Heuer <kwzh@gnu.org>
date Mon, 30 Aug 1999 18:58:31 +0000
parents d4ac295a98b3
children 467b88fab665
comparison
equal deleted inserted replaced
25453:61fb4dde8684 25454:80ac191b6d2b
951 These are the ordinary trigonometric functions, with argument measured 951 These are the ordinary trigonometric functions, with argument measured
952 in radians. 952 in radians.
953 @end defun 953 @end defun
954 954
955 @defun asin arg 955 @defun asin arg
956 The value of @code{(asin @var{arg})} is a number between @minus{}pi/2 956 The value of @code{(asin @var{arg})} is a number between
957 and pi/2 (inclusive) whose sine is @var{arg}; if, however, @var{arg} 957 @ifinfo
958 @minus{}pi/2
959 @end ifinfo
960 @tex
961 $-\pi/2$
962 @end tex
963 and
964 @ifinfo
965 pi/2
966 @end ifinfo
967 @tex
968 $\pi/2$
969 @end tex
970 (inclusive) whose sine is @var{arg}; if, however, @var{arg}
958 is out of range (outside [-1, 1]), then the result is a NaN. 971 is out of range (outside [-1, 1]), then the result is a NaN.
959 @end defun 972 @end defun
960 973
961 @defun acos arg 974 @defun acos arg
962 The value of @code{(acos @var{arg})} is a number between 0 and pi 975 The value of @code{(acos @var{arg})} is a number between 0 and
976 @ifinfo
977 pi
978 @end ifinfo
979 @tex
980 $\pi$
981 @end tex
963 (inclusive) whose cosine is @var{arg}; if, however, @var{arg} 982 (inclusive) whose cosine is @var{arg}; if, however, @var{arg}
964 is out of range (outside [-1, 1]), then the result is a NaN. 983 is out of range (outside [-1, 1]), then the result is a NaN.
965 @end defun 984 @end defun
966 985
967 @defun atan arg 986 @defun atan arg
968 The value of @code{(atan @var{arg})} is a number between @minus{}pi/2 987 The value of @code{(atan @var{arg})} is a number between
969 and pi/2 (exclusive) whose tangent is @var{arg}. 988 @ifinfo
989 @minus{}pi/2
990 @end ifinfo
991 @tex
992 $-\pi/2$
993 @end tex
994 and
995 @ifinfo
996 pi/2
997 @end ifinfo
998 @tex
999 $\pi/2$
1000 @end tex
1001 (exclusive) whose tangent is @var{arg}.
970 @end defun 1002 @end defun
971 1003
972 @defun exp arg 1004 @defun exp arg
973 This is the exponential function; it returns 1005 This is the exponential function; it returns
974 @tex 1006 @tex