Next: SINH, Previous: SIGNAL, Up: Intrinsic Procedures
SIN — Sine functionSIN(X) computes the sine of X.
     RESULT = SIN(X)
     | X | The type shall be REAL(*)orCOMPLEX(*). | 
          program test_sin
            real :: x = 0.0
            x = sin(x)
          end program test_sin
     
     | Name | Argument | Return type | Standard | 
| DSIN(X) | REAL(8) X | REAL(8) | f95, gnu | 
| CSIN(X) | COMPLEX(4) X | COMPLEX(4) | f95, gnu | 
| ZSIN(X) | COMPLEX(8) X | COMPLEX(8) | f95, gnu | 
| CDSIN(X) | COMPLEX(8) X | COMPLEX(8) | f95, gnu |