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 Commenti

Brest is the initial condition?
Yes, it is.

Accedi per commentare.

 Risposta accettata

madhan ravi
madhan ravi il 25 Feb 2019
Modificato: madhan ravi il 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))

Più risposte (0)

Categorie

Community Treasure Hunt

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

Start Hunting!

Translated by