Sin

Description

Calculates the sine of an angle.

Syntax

Sin ( n )

Argument

Description

n

The angle (in radians) for which you want the sine

Returns

Double. Returns the sine of n. If n is null, Sin returns null.

Examples

Example 1

This statement returns .8414709848078965:

Sin(1)

Example 2

This statement returns 0:

Sin(0)

Example 3

This statement returns 0:

Sin(Pi(1))

See also