Sinc¶
Status: Stable
documented, exercised by the test suite and/or worked examples, with no known limitations recorded.
Description¶
Sinc[z]
gives the cardinal sine Sin[z]/z, with Sinc[0] = 1.
An entire, even function. Sinc[+-Infinity] = 0. Real and complex inputs
evaluate numerically at machine or arbitrary (MPFR) precision;
D[Sinc[z], z] = Cos[z]/z - Sin[z]/z^2. Listable.
Examples¶
No verified examples yet for this function.
Implementation notes¶
Attributes: Listable, NumericFunction, Protected.
Implementation status¶
Stable — documented, exercised by the test suite and/or worked examples, with no known limitations recorded.
References¶
- Source:
src/info.c - Specification:
docs/spec/builtins/special-functions.md
Notes & additional examples¶
Worked examples¶
Notes¶
Sinc[z] is the cardinal sine Sin[z]/z, with the removable singularity at the
origin filled in as Sinc[0] = 1. It is entire and even, and Sinc[±Infinity] = 0.
It appears as the derivative of the sine integral: D[SinIntegral[z], z] = Sinc[z].
Numeric evaluation is at machine or arbitrary (MPFR) precision for both real and
complex arguments. Listable. See also SinIntegral.