plot the exp function

2 visualizaciones (últimos 30 días)
KyeongMin Cho
KyeongMin Cho el 1 de Abr. de 2020
Respondida: Birdman el 1 de Abr. de 2020
I'd like to draw graph like this with using plot, not ezplot.
I've tried several expression but not worked.

Respuesta aceptada

Birdman
Birdman el 1 de Abr. de 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))

Más respuestas (0)

Categorías

Más información sobre Line Plots en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by