SIN
— Sine function ¶SIN(X)
computes the sine of X.
Fortran 77 and later
Elemental function
RESULT = SIN(X)
X | The type shall be REAL or
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
Name | Argument | Return type | Standard |
---|---|---|---|
SIN(X) | REAL(4) X | REAL(4) | Fortran 77 and later |
DSIN(X) | REAL(8) X | REAL(8) | Fortran 77 and later |
CSIN(X) | COMPLEX(4) X | COMPLEX(4) | Fortran 77 and later |
ZSIN(X) | COMPLEX(8) X | COMPLEX(8) | GNU extension |
CDSIN(X) | COMPLEX(8) X | COMPLEX(8) | GNU extension |
Inverse function:
ASIN
— Arcsine function
Degrees function:
SIND
— Sine function, degrees