Info
此问题已关闭。 请重新打开它进行编辑或回答。
Solving differential equations and specifying initial conditions
1 次查看(过去 30 天)
显示 更早的评论
Given an equation, can you solve for the derivatives of certain quantities in terms of the other variables? For example in the following equation when I try to solve for diff(y(t)) Matlab is unable to find an explicit solution but diff(y(t)) is equal to diff(x(t)), so if the value of diff(x(t)) can be specified diff(y(t)) could be found. How can you specify appropriate conditions such as the value of diff(x(t)) to solve for the derivatives of other quantities?
syms x(t) y(t)
eq1 = x == y+2;
solve(diff(eq1),diff(y(t)))
1 个评论
Walter Roberson
2021-2-23
Duplicated by later https://www.mathworks.com/matlabcentral/answers/753309-solve-for-a-variable-in-terms-of-specific-other-variables?s_tid=srchtitle which has an answer
回答(0 个)
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!