how to plot this equation?

1 次查看(过去 30 天)
Brian Navarro Sesareo
回答: Star Strider 2019-11-11
y = 10.1556-9.10862*exp(-0.00100087*t);

回答(1 个)

Star Strider
Star Strider 2019-11-11
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.

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by