plot sinc function

2 views (last 30 days)
medhat
medhat on 30 Apr 2011
Commented: Walter Roberson on 12 May 2020
Hi,
I want to know how to plot a (smooth) sinc on matlab.
Thanks

Answers (2)

Matt Fig
Matt Fig on 30 Apr 2011
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.
  3 Comments
dm
dm on 30 Apr 2011
How can a step-size of 0.01 not be good enough for a smooth plot? The difference between 0.01 and 0.0001 is hardly visible here. However, try using linesmooth in the plot command, i.e.
plot(x,sinc(x),'linesmooth','on')
medhat
medhat on 30 Apr 2011
Thank you very much, that is what I want. The problem appears when printing the figure.
Thanks

Sign in to comment.


badour ashkar
badour ashkar on 26 Nov 2019
plot(x,sinc(x))
  2 Comments
Andile Simelane
Andile Simelane on 12 May 2020
It doesn't work. always gives "undefined Function sinc for input arguments of type double"
Walter Roberson
Walter Roberson on 12 May 2020
sinc() is part of the Signal Processing Toolbox

Sign in to comment.

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!