Method: AppMath::C#asinh

Defined in:
lib/cnum.rb

#asinhObject

Inverse hyperbolic sine.



369
370
371
# File 'lib/cnum.rb', line 369

def asinh
   ((self * self + C.one).sqrt + self).log
end