Java.Lang.Math.Sin Method
Returns the closest double approximation of the sine of the argument.

Syntax

[Android.Runtime.Register("sin", "(D)D", "")]
public static double Sin (double d)

Parameters

d
the angle whose sin has to be computed, in radians.

Returns

Documentation for this section has not yet been entered.

Remarks

Returns the closest double approximation of the sine of the argument. The returned result is within 1 ulp (unit in the last place) of the real result.

Special cases:

  • sin(+0.0) = +0.0
  • sin(-0.0) = -0.0
  • sin(+infinity) = NaN
  • sin(-infinity) = NaN
  • sin(NaN) = NaN

[Android Documentation]

Requirements

Namespace: Java.Lang
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1