File:Sinc sequence.pdf
Description |
English: Sinc sequence .
Italiano: Sequenza sinc . |
||
Date | |||
Source | Own work | ||
Author | Luca Ghio | ||
Permission (Reusing this file) |
|
||
gnuplot source | click to expand
n=[-10:10];
y=sinc(n/3);
figure
set(gca,'FontSize',14)
stem(n,y,'k')
xlabel('n')
title('sinc(n/3)')
axis([-10 10 -0.5 1.5])
grid on
|