x = 7.234e-7*cos(132.9*t) - 1.054e-6*exp(-1.0*t) - 5.901e-6*cos(70.71*t) - 5.444e-9*sin(132.9*t) + 8.345e-8*sin(70.71*t) + 7.042e-6*cos(24.56*t) - 8.114e-7*cos(108.3*t) - 2.868e-7*sin(24.56*t) + 7.49e-9*sin(108.3*t);
t = 0:0.01:3;
Please someone plot this for me Im not sure from my code cuz i got I little bit wierd graph

2 Kommentare

madhan ravi
madhan ravi am 30 Nov. 2018
why do you say it's wierd?
madhan ravi
madhan ravi am 30 Nov. 2018
doc plot in command window tells you how to use plot command

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

Mark Sherstan
Mark Sherstan am 30 Nov. 2018

1 Stimme

Looks fine to me.
t = 0:0.01:3;
x = 7.234e-7*cos(132.9*t) - 1.054e-6*exp(-1.0*t) - 5.901e-6*cos(70.71*t) - 5.444e-9*sin(132.9*t) + 8.345e-8*sin(70.71*t) + 7.042e-6*cos(24.56*t) - 8.114e-7*cos(108.3*t) - 2.868e-7*sin(24.56*t) + 7.49e-9*sin(108.3*t);
plot(t,x)
xlabel('t')
ylabel('x')
untitled.png

Weitere Antworten (0)

Kategorien

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

Community Treasure Hunt

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

Start Hunting!

Translated by