sinh
sinh(x)
Compute hyperbolic sine of x
Examples
julia> sinh(0)
0.0
julia> sinh(1)
1.1752011936438014
julia> sinh(-1)
-1.1752011936438014
julia> sinh(2.5)
6.050204481985396
julia> sinh(-2.5)
-6.050204481985396
The sinh
function computes the hyperbolic sine of the input x
. It returns the result as a floating-point number.
Here are some common examples of using the sinh
function:
-
Calculate the hyperbolic sine of zero:
julia> sinh(0) 0.0
The hyperbolic sine of zero is zero.
-
Compute the hyperbolic sine of a positive number:
julia> sinh(1) 1.1752011936438014
The hyperbolic sine of 1 is approximately 1.1752011936438014.
-
Calculate the hyperbolic sine of a negative number:
julia> sinh(-1) -1.1752011936438014
The hyperbolic sine of -1 is approximately -1.1752011936438014.
-
Find the hyperbolic sine of a non-integer value:
julia> sinh(2.5) 6.050204481985396
The hyperbolic sine of 2.5 is approximately 6.050204481985396.
- Compute the hyperbolic sine of a negative non-integer value:
julia> sinh(-2.5) -6.050204481985396
The hyperbolic sine of -2.5 is approximately -6.050204481985396.
Note: The sinh
function is part of Julia's mathematical functions and is used to compute the hyperbolic sine.
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.