asinh
asinh(x)
Compute the inverse hyperbolic sine of x
Examples
julia> asinh(1.0)
0.881373587019543
julia> asinh(0)
0.0
julia> asinh(-2.5)
-1.6472311463710958
Common mistake example:
julia> asinh("hello")
ERROR: MethodError: no method matching asinh(::String)
In this example, the asinh
function expects a numeric argument, but a String
was provided instead. Ensure that the argument passed to asinh
is of a numeric type to avoid such errors.
See Also
acos, acosd, acosh, acot, acotd, acoth, acsc, acscd, acsch, asec, asecd, asech, asin, asind, asinh, atan, atan2, atand, atanh, cos, cosc, cosd, cosh, cospi, cot, cotd, coth, csc, cscd, csch, deg2rad, rad2deg, sin, sinc, sind, sinh, sinpi, tan, tand, tanh,User Contributed Notes
Add a Note
The format of note supported is markdown, use triple backtick to start and end a code block.