failed attempts to intercept copy command when the cursor is in the empty text field...
[LeanCalc.git] / help / sec
1 NAME
2     sec - trigonometric secant function
3
4 SYNOPSIS
5     sec(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 secant of x to a multiple of eps, with error less
15     in absolute value than .75 * eps.
16
17 EXAMPLE
18     > print sec(1, 1e-5), sec(1, 1e-10), sec(1, 1e-15), sec(1, 1e-20)
19     1.85082 1.8508157177 1.850815717680926 1.85081571768092561791
20
21 LIMITS
22     unlike sin and cos, x must be real
23     eps > 0
24
25 LINK LIBRARY
26     NUMBER *qsec(NUMBER *x, NUMBER *eps)
27
28 SEE ALSO
29     sin, cos, tan, csc, cot, epsilon
30