plot function in a specific interval while the other interval function is equal to zero
이전 댓글 표시
how can i plot the following fucntion
g(t)= t^2+ 2*t+3 , 5 < t < 20
g(t)= 0 , t < 5 & t > 20
답변 (1개)
madhan ravi
2019년 3월 26일
See if this helps to understand how to solve your homework:
t=1:.1:10;
g=t.^2.*(t>=1 & t<5) + t.*(t>=5 & t<=10);
plot(t,g)
댓글 수: 5
madhan ravi
2019년 3월 26일
Hint: One of your time interval should use "|" instead of "&".
Mohamed karam
2019년 3월 26일
madhan ravi
2019년 3월 26일
Show what you have tried.
Mohamed karam
2019년 3월 26일
Mohamed karam
2019년 3월 26일
카테고리
도움말 센터 및 File Exchange에서 Annotations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!