how to plot v-t graph for v=v0(e^-kt)?
Ältere Kommentare anzeigen
how to set variables for v0 and k?
Antworten (2)
Davide Masiello
am 10 Mär. 2022
Try this
clear,clc
v0 = 1;
k = 1;
t = linspace(0,10,100);
v = v0*exp(-k*t);
figure
plot(t,v)
Hi @현규 강
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
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!