I want to plot this equation P(t)=P(0)*e^rt.
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I want to plot this equation P(t)=P(0)*e^rt. considering P(0) is p nought.
3 Kommentare
John D'Errico
am 12 Jun. 2021
If P0 is not known, then what can you plot, since this is explicitly a function of P0.
Antworten (1)
Mouhamed Niasse
am 12 Jun. 2021
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 Kommentare
Siehe auch
Kategorien
Mehr zu Thermal Analysis finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!