Not found
The exact documentation you were looking for could not be found. Here is the best guess.
tanh(p1)
public
Computes the hyperbolic tangent of x (expressed in radians).
Domain: (-INFINITY, INFINITY)
Codomain: (-1, 1)
Math.tanh(0)
Show source
static VALUE
math_tanh(VALUE unused_obj, VALUE x)
{
return DBL2NUM(tanh(Get_Double(x)));
}