Home | History | Annotate | Download | only in math

Lines Matching refs:Tan

16 //      tan.c
22 // double x, y, tan();
23 // y = tan( x );
62 // tan coefficients
76 // Tan returns the tangent of the radian argument x.
79 // Tan(±0) = ±0
80 // Tan(±Inf) = NaN
81 // Tan(NaN) = NaN
82 func Tan(x float64) float64
84 func tan(x float64) float64 {