how to plot this equation?

1 回表示 (過去 30 日間)
Brian Navarro Sesareo
Brian Navarro Sesareo 2019 年 11 月 11 日
回答済み: 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 Center および File Exchange2-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