I want to plot this equation P(t)=P(0)*e^rt.

8 ビュー (過去 30 日間)
Ibrahim Bin Umair
Ibrahim Bin Umair 2021 年 6 月 12 日
回答済み: Mouhamed Niasse 2021 年 6 月 12 日
I want to plot this equation P(t)=P(0)*e^rt. considering P(0) is p nought.
  3 件のコメント
Ibrahim Bin Umair
Ibrahim Bin Umair 2021 年 6 月 12 日
No sir the values are not known. Only known for r.
John D'Errico
John D'Errico 2021 年 6 月 12 日
If P0 is not known, then what can you plot, since this is explicitly a function of P0.

サインインしてコメントする。

回答 (1 件)

Mouhamed Niasse
Mouhamed Niasse 2021 年 6 月 12 日
xlim1=0; xlim2=10;
r=1; P0=1;
% I supposed you will define r and P(0) as constants, and the limits xlim1
% and xlim2 are known:
t=linspace(xlim1,xlim2);
P=P0*exp(r*t);
plot(t,P)

カテゴリ

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