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
)
Public Shared Function SincPi (
x As Double
) As Double
public:
static double SincPi(
double x
)
static member SincPi :
x : float -> float
Parameters
- x
- Type: SystemDouble
The argument.
Return Value
Type:
DoubleThe 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