fplot() for three functions
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Shuqing Qi
el 6 de Feb. de 2021
Comentada: Shuqing Qi
el 7 de Feb. de 2021
I wonder why my fplot()s output errors instead of the graph below?
0 comentarios
Respuesta aceptada
Alan Stevens
el 6 de Feb. de 2021
Try using limits, e.g.
fplot(@(t) 16/3*exp(-2*t)-4/3*exp(-8*t), [0 20]);
Also use
t.*exp(...etc) not t*exp(...etc)
3 comentarios
Alan Stevens
el 6 de Feb. de 2021
You need to use
exp(-4*t).*cos(3*t)
and
exp(-4*t).*sin(3*t)
Más respuestas (0)
Ver también
Categorías
Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!