How can i draw the graph of this two functions using matlab
1 回表示 (過去 30 日間)
古いコメントを表示
1 件のコメント
Rik
2020 年 12 月 19 日
You can find guidelines for posting homework on this forum here. If you have trouble with Matlab basics you may consider doing the Onramp tutorial (which is provided for free by Mathworks).
回答 (1 件)
Rafael Hernandez-Walls
2020 年 12 月 19 日
when i have this like problem i use this code:
t=linspace(0,2*pi,50);
f=((t>0)&(t<=1)).*2+((t>1)&(t<=pi/2)).*0.5.*t.^2+((t>pi/2)).*cos(t);
plot(t,f)
2 件のコメント
Rik
2020 年 12 月 19 日
Why did you post a complete solution to a homework question?
I would also use ... to make each piece of this function more distinct:
t=linspace(0,2*pi,50);
f= ((t>0)&(t<=1) ).*2+...
((t>1)&(t<=pi/2)).*0.5.*t.^2+...
((t>pi/2) ).*cos(t);
plot(t,f)
参考
カテゴリ
Help Center および File Exchange で Line Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!