how to plot this equation?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
y = 10.1556-9.10862*exp(-0.00100087*t);
0 Commenti
Risposte (1)
Star Strider
il 11 Nov 2019
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.
0 Commenti
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!