how to plot v-t graph for v=v0(e^-kt)?

Antworten (2)

Davide Masiello
Davide Masiello am 10 Mär. 2022

0 Stimmen

Try this
clear,clc
v0 = 1;
k = 1;
t = linspace(0,10,100);
v = v0*exp(-k*t);
figure
plot(t,v)
Sam Chak
Sam Chak am 10 Mär. 2022
Bearbeitet: Sam Chak am 10 Mär. 2022

0 Stimmen

The method posted by @Davide Masiello is proper. Alternatively, if you want a quick plot to view, then you can do this:
v0 = 3; % initial value
k = 2; % inverse of time constant (tau = 0.5), that's why it converges at 5*tau = 2.5 sec
fplot(@(t) v0*exp(-k*t), [0 5]);

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Hilfe-Center und File Exchange

Produkte

Gefragt:

am 10 Mär. 2022

Bearbeitet:

am 10 Mär. 2022

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by