Calculates the sine of an angle.
sine = Sin(expression)
The Sin function has the following parameter.
Parameter | Description | |
---|---|---|
expression | Must be a numeric value that designates degrees. |
/* The sine of X is divided by the cosine of X, and assigned to the variable identifier Tan. */ Tan = Sin(X) / Cos(X) ** **