Plotting a Unit Periodic Impulse Signal
이전 댓글 표시

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.
답변 (1개)
Ameer Hamza
2020년 9월 5일
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);

카테고리
도움말 센터 및 File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!