plot sinc function
显示 更早的评论
Hi,
I want to know how to plot a (smooth) sinc on matlab.
Thanks
回答(2 个)
Matt Fig
2011-4-30
ezplot(@sinc)
Or, more generally:
x = -5:.01:5;
plot(x,sinc(x))
This is if you have the signal processing toolbox. If not, you will have to define your own SINC function. If that is the case, show what you have done so far on it.
badour ashkar
2019-11-26
0 个投票
plot(x,sinc(x))
2 个评论
Andile Simelane
2020-5-12
It doesn't work. always gives "undefined Function sinc for input arguments of type double"
Walter Roberson
2020-5-12
sinc() is part of the Signal Processing Toolbox
类别
在 帮助中心 和 File Exchange 中查找有关 Smoothing and Denoising 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!