I want to plot this equation P(t)=P(0)*e^rt.
6 次查看(过去 30 天)
显示 更早的评论
I want to plot this equation P(t)=P(0)*e^rt. considering P(0) is p nought.
3 个评论
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
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)
0 个评论
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!