plot sinc function
Mostra commenti meno recenti
Hi,
I want to know how to plot a (smooth) sinc on matlab.
Thanks
Risposte (2)
Matt Fig
il 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.
badour ashkar
il 26 Nov 2019
0 voti
plot(x,sinc(x))
2 Commenti
Andile Simelane
il 12 Mag 2020
It doesn't work. always gives "undefined Function sinc for input arguments of type double"
Walter Roberson
il 12 Mag 2020
sinc() is part of the Signal Processing Toolbox
Categorie
Scopri di più su Smoothing and Denoising in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!