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!