plot the exp function

2 Ansichten (letzte 30 Tage)
KyeongMin Cho
KyeongMin Cho am 1 Apr. 2020
Beantwortet: Birdman am 1 Apr. 2020
I'd like to draw graph like this with using plot, not ezplot.
I've tried several expression but not worked.

Akzeptierte Antwort

Birdman
Birdman am 1 Apr. 2020
syms y(t)
eq=diff(y,2)+13*diff(y)+40*y==4;
Dy=diff(y);
Y(t)=dsolve(eq,[y(0)==0 Dy(0)==0])
t=0:0.001:0.9;
plot(t,Y(t))

Weitere Antworten (0)

Kategorien

Mehr zu Line Plots finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by