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!