The SINH function returns the hyperbolic sine of a REAL argument.
Syntax
SINH (x)
x is an INTENT(IN) scalar or array of type REAL.
The result is of the same type and kind as x. Its value is a REAL representation of the hyperbolic sine of x.
Example
real :: x..5,y(2)=(/1.,1./) write(*,*) sinh(x) ! writes .5210953 write(*,*) sinh(y) ! writes 1.175201 1.175201