Sin (function)

<< Click to Display Table of Contents >>

Sin (function)

Sin(Num)

Returns the sine of an angle.

The angle must be expressed in radians.

See also: Atn, Cos, Tan

Example:

Sub Main

 pi = 4 * Atn(1)

 rad = 90 * (pi/180)

 x = Sin(rad)

 Print x

End Sub