= private = protected
sinh(p1)
Computes the hyperbolic sine of x (expressed in radians).
static VALUE math_sinh(VALUE obj, VALUE x) { Need_Float(x); return DBL2NUM(sinh(RFLOAT_VALUE(x))); }