Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
I've been trying to plot the following figure for t, but I keep getting it wrong.
조회 수: 1 (최근 30일)
이전 댓글 표시
Writing it in terms of singularity function would be;
y(t) = 2u(t) - u(t-2) + u(t-4) - r(t-6)
Matlab;
function [y1] = y1(t)
y1 = y1 = 2*(t>=0 & t<2)-1*(t>=2 & t<4)+1*(t>=4 & t<6)+ (2)*(-t/3).*(t>=6 & t<8);
end
t = -10:0.01:10;
Y1 = y1(t);
plot(t,Y1); ylabel('y1(t)')
For some reason the unit step and ramp signals are always referring to the origin. And my ramp signal starts at -4 which I have no idea why.
댓글 수: 0
답변 (1개)
Rajani Mishra
2020년 4월 14일
I have modified your code and plotted the result, Please refer below for the code:
function [y1] = y1(t)
y1 = 2*(t>=0) + -1*(t>=2) +1*(t>=4) + (2)*(-t/3).*(t>=6);
end
Below is the result of the above code :
댓글 수: 0
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!