How can i draw the graph of this two functions using matlab

1 Ansicht (letzte 30 Tage)
PULAK Kumer
PULAK Kumer am 19 Dez. 2020
  1 Kommentar
Rik
Rik am 19 Dez. 2020
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).

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Rafael Hernandez-Walls
Rafael Hernandez-Walls am 19 Dez. 2020
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 Kommentare
Rik
Rik am 19 Dez. 2020
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)

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by