sinh(x)
computes the hyperbolic sine of x
.
Fortran 95 and later, for a complex argument Fortran 2008 or later
Elemental function
result = sinh(x)
x
- The type shall be real
or complex
.The return value has same type and kind as x
.
program test_sinh
real(8) :: x = - 1.0_8
x = sinh(x)
end program test_sinh