Combining symbolic differential equations
5 ビュー (過去 30 日間)
古いコメントを表示
Hello,
I have the following two equations:
syms R C positive
syms u_e(t) u_a(t) i(t)
eq1 = u_e(t) == R * i(t) + u_a(t)
eq2 = i(t) == C * diff(u_a(t), t)
I want to use the expression i(t) of equation 2 in equation 1. Using solve does not help.
solve(eq2, i(t))
Could anyone give me a hint, how to do this?
Michael
回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!