sinh(x) computes the hyperbolic sine of x.
sinh(x)
x
Fortran 95 and later
Elemental function
result = sinh(x)
real
The return value is of type real.
program test_sinh real(8) :: x = - 1.0_8 x = sinh(x) end program test_sinh
asinh