Initial revision
[LeanCalc.git] / help / csc
1 NAME
2     csc - trigonometric cosecant function
3
4 SYNOPSIS
5     csc(x [,eps])
6
7 TYPES
8     x           real
9     eps         nonzero real, defaults to epsilon()
10
11     return      real
12
13 DESCRIPTION
14     Calculate the cosecant of x to a multiple of eps, with error less
15     in absolute value than .75 * eps.
16
17 EXAMPLE
18     > print csc(1, 1e-5), csc(1, 1e-10), csc(1, 1e-15), csc(1, 1e-20)
19     1.1884 1.1883951058 1.188395105778121 1.18839510577812121626
20
21 LIMITS
22     none
23
24 LINK LIBRARY
25     NUMBER *qcsc(NUMBER *x, NUMBER *eps)
26
27 SEE ALSO
28     sin, cos, tan, sec, cot, epsilon
29