Plotting Impulse response of a system and I am stuck
3 ビュー (過去 30 日間)
古いコメントを表示
Hi, while I am practising about plotting impulse signal here and I'm stuck:

and I wanted to plot this signal:

I have the following array:
0 件のコメント
採用された回答
Walter Roberson
2022 年 1 月 2 日
sympref('HeaviSideAtOrigin', 1);
u = @heaviside
syms t
h(t) = exp(-2*t) .* u(t-1);
fplot(h, [-5 5])
5 件のコメント
David Hill
2022 年 1 月 2 日
It was clearly in the link, heaviside(0) is default 1/2. Inorder to change this to 1, the code above is used.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!