how to plot this equation?

1 visualización (últimos 30 días)
Brian Navarro Sesareo
Brian Navarro Sesareo el 11 de Nov. de 2019
Respondida: Star Strider el 11 de Nov. de 2019
y = 10.1556-9.10862*exp(-0.00100087*t);

Respuestas (1)

Star Strider
Star Strider el 11 de Nov. de 2019
Try this:
t = linspace(0, 5000, 250); % Choose Appropriate Limits
y = 10.1556-9.10862*exp(-0.00100087*t);
figure
plot(t, y)
grid
Experiment with ‘t’ to get the result you want.

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by