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.
2 件のコメント
Ameer Hamza
2020 年 9 月 5 日
What is the period of the output signal?
Evan Hicks
2020 年 9 月 5 日
回答 (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!