How to plot a Differential Equation

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

2 Comments

Brest is the initial condition?

Sign in to comment.

 Accepted Answer

madhan ravi
madhan ravi on 25 Feb 2019
Edited: madhan ravi on 25 Feb 2019
syms V(t)
C=...
R=...
Vrest=...
ode=C*diff(V)==t-V/R;
V(t)=dsolve(ode,V(0)==Vrest);
fplot(V(t))

More Answers (0)

Categories

Community Treasure Hunt

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

Start Hunting!