How to Plot Multivariate Differential Equation in MATLAB?

1 次查看(过去 30 天)
I want to plot below equation in MATLAB.
V=(I)(R) - (R)(C)(dv/dt)
Where,
I= Current= 50nA
R=Resistance= 200 Mega Ohm
C=Capacitance= 50 pF
I want to plot this equation "V" versus time "t".
Can anyone help me out?

采纳的回答

Star Strider
Star Strider 2019-3-9
The symbolic approach:
syms I R V(t) t V0
I = sym(50E-9);
R = sym(200E+6);
C = sym(50E-12);
Eq = V == I*R - R*C*diff(V);
Vs(t) = dsolve(Eq, V(0) == 0)
figure
fplot(Vs, [0, 0.1])
grid
Experiment to get the result you want.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Calculus 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by