MATLAB: How to plot a Differential Equation

differential equationsdsolvesymbolicSymbolic Math Toolbox

How do you plot this differential equation on matlab?
C(dV/dt) = I(t) – V(t)/R
Where C= 100e-12 F
R = .6e-9 Ohms
Vrest = -65e-3 V
And I(t) is ay simple function of t (I=t)
And we are solving for V

Best Answer

syms V(t)
C=...
R=...
Vrest=...
ode=C*diff(V)==t-V/R;
V(t)=dsolve(ode,V(0)==Vrest);
fplot(V(t))
Related Question