Math.sin()

Signature

double sin (double a)

Domain

action, condition

Description

Returns the trigonometric sine of an angle. Special cases:
If the argument is NaN or an infinity, then the result is NaN.
If the argument is zero, then the result is a zero with the same sign as the argument.
A result must be within 1 ulp of the correctly rounded result. Results must be semi-monotonic.

Parameters

NameTypeDescription
adoubleAn angle, in radians.

Returns

TypeDescription
doubleThe sine of the argument.

Cautions

none

Example


String result = String.valueOfDouble (Math.sin (0.5));

Result is: result contains: "0.479425538604203"