File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3562,14 +3562,16 @@ def sinc(x):
3562
3562
r"""
3563
3563
Return the normalized sinc function.
3564
3564
3565
- The sinc function is :math:`\sin(\pi x)/(\pi x)`.
3565
+ The sinc function is equal to :math:`\sin(\pi x)/(\pi x)` for any argument
3566
+ :math:`x\ne 0`. ``sinc(0)`` takes the limit value 1, making ``sinc`` not
3567
+ only everywhere continuous but also infinitely differentiable.
3566
3568
3567
3569
.. note::
3568
3570
3569
3571
Note the normalization factor of ``pi`` used in the definition.
3570
3572
This is the most commonly used definition in signal processing.
3571
3573
Use ``sinc(x / np.pi)`` to obtain the unnormalized sinc function
3572
- :math:`\sin(x)/(x) ` that is more common in mathematics.
3574
+ :math:`\sin(x)/x ` that is more common in mathematics.
3573
3575
3574
3576
Parameters
3575
3577
----------
@@ -3584,8 +3586,6 @@ def sinc(x):
3584
3586
3585
3587
Notes
3586
3588
-----
3587
- ``sinc(0)`` is the limit value 1.
3588
-
3589
3589
The name sinc is short for "sine cardinal" or "sinus cardinalis".
3590
3590
3591
3591
The sinc function is used in various signal processing applications,
You can’t perform that action at this time.
0 commit comments