Plotting a Unit Periodic Impulse Signal
Mostrar comentarios más antiguos

I need to graph this signal and do not know the best way to go about graphing the signal of an impulse including a period.
2 comentarios
Ameer Hamza
el 5 de Sept. de 2020
What is the period of the output signal?
Evan Hicks
el 5 de Sept. de 2020
Respuestas (1)
Ameer Hamza
el 5 de Sept. de 2020
Try this
syms x k
n = 10;
f = symsum(6*kroneckerDelta(x, 3*k), k, 0, n);
xv = 0:3*n;
yv = subs(f, xv);
stem(xv, yv);

Categorías
Más información sobre 2-D and 3-D Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!