How to Plot Multivariate Differential Equation in MATLAB?
2 次查看(过去 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?
0 个评论
采纳的回答
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 Center 和 File Exchange 中查找有关 Symbolic Math Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!