Lines Matching full:tanh
11 // tanh.c
17 // double x, y, tanh();
19 // y = tanh( x );
30 // tanh(x) = sinh(x)/cosh(x) = 1 - 2/(exp(2x) + 1).
68 // Tanh returns the hyperbolic tangent of x.
72 // Tanh(±0) = ±0
73 // Tanh(±Inf) = ±1
74 // Tanh(NaN) = NaN
75 func Tanh(x float64) float64 { func
79 return tanh(x)
82 func tanh(x float64) float64 { func