Sin()
- Last UpdatedJul 22, 2024
- 1 minute read
Returns the sine of an angle in degrees.
Category
Math
Syntax
Result = Sin( Number );
Parameter
Number
Angle in degrees. Any number or numeric attribute.
Examples
Sin(90); ' returns 1;
Sin(0); ' returns 0;
This example shows how to use the function in a math expression:
wave = 100 * Sin (6 * Now().Second);