sin(x) computes the sine of x.
sin(x)
x
FORTRAN 77 and later
Elemental function
result = sin(x)
real
complex
The return value has same type and kind as x.
program test_sin real :: x = 0.0 x = sin(x) end program test_sin
asin, cos, tan