focus expression text field at startup -> version 1.2
[LeanCalc.git] / help / tan
1 NAME
2     tan - trigonometric tangent
3
4 SYNOPSIS
5     tan(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 tangent of x to a multiple of eps, with error less
15     in absolute value than .75 * eps.
16
17 EXAMPLE
18     > print tan(1, 1e-5), tan(1, 1e-10), tan(1, 1e-15), tan(1, 1e-20)
19     1.55741 1.5574077247 1.557407724654902 1.55740772465490223051
20
21 LIMITS
22     unlike sin and cos, x must be real
23     eps > 0
24
25 LINK LIBRARY
26     NUMBER *qtan(NUMBER *x, NUMBER *eps)
27
28 SEE ALSO
29     sin, cos, sec, csc, cot, epsilon
30