static public Method

Math.asinh(p1)

Math.asinh(x)     float

Computes the inverse hyperbolic sine of x.

Source Code

/*
*  call-seq:
*     Math.asinh(x)    => float
*  
*  Computes the inverse hyperbolic sine of <i>x</i>.
*/

static VALUE
math_asinh(obj, x)
   VALUE obj, x;
{
   Need_Float(x);
   return rb_float_new(asinh(RFLOAT(x)->value));
}
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.