sin

The sin method returns the sine of a number.

 

Syntax

System.Double sin(System.Double x);

 

Parameters

x

Angle in radians.

 

Return Value

Returns the returns a numeric value between -1 and 1, which represents the sine of the angle.

 

Remarks

Member of Math.

 

Example