Computes the sine of a double double value.
Namespace:
Meta.Numerics.Extended
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static DoubleDouble Sin(
DoubleDouble x
)
Public Shared Function Sin (
x As DoubleDouble
) As DoubleDouble
public:
static DoubleDouble Sin(
DoubleDouble x
)
static member Sin :
x : DoubleDouble -> DoubleDouble
Parameters
- x
- Type: Meta.Numerics.Extended.DoubleDouble
The argument of the sine.
Return Value
Type:
DoubleDoubleThe value of sin(x).
Remarks Unlike Sin(Double), this function does not currenly do range reduction with a value
of pi even more accurate than Pi. Therefore, beyond the first few periods, results can slowly
loose accuracy, particularly near zeros, at the rate of about one digit per order of magnitude of the argument.
See Also