Click or drag to resize

MoreMathSinPi Method

Computes the sine of the given multiple of π.

Namespace:  Meta.Numerics
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public static double SinPi(
	double x
)

Parameters

x
Type: SystemDouble
The argument.

Return Value

Type: Double
The value of sin(xπ).
Remarks

This function allows the user to increase performance and avoid inaccuracies due to the finite precision of the stored constant PI in some cases. Suppose you need to compute sin(xπ) for a large value of x.

See Also