Click or drag to resize

MoreMathSincPi Method

Computes the sinc of the given multiple of π.

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

Parameters

x
Type: SystemDouble
The argument.

Return Value

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

This definition of the sinc function is commonly used in signal processing applications. For the more common definition without the factor π, see Sinc(Double).

See Also