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!