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!