I get explicit solution not found , how to view the solution ?
古いコメントを表示
syms x(t) y(t)
dx = diff(x,t)
dx2=diff(x,t,2)
dy = diff(y,t)
dy2=diff(y,t,2)
eqns = [dx2 + dx2 == y - 2*dx*dy + 2*(dx).^2+cos(t), dy2 == 2*y + x*dy];
conds = [y(0)==0, dy(0)==1, x(0)==0, dx(0)==0];
sol = dsolve(eqns,conds)
12 件のコメント
Jan
2018 年 5 月 19 日
What is your question? Did you take into account, that this function might not have an explicit solution?
madhan ravi
2018 年 5 月 19 日
madhan ravi
2018 年 5 月 19 日
編集済み: madhan ravi
2018 年 5 月 19 日
Stephan
2018 年 5 月 19 日
Have a look at this:
Does this help you?
Best regards
Stephan
Star Strider
2018 年 5 月 19 日
madhan ravi
2018 年 5 月 19 日
編集済み: madhan ravi
2018 年 5 月 19 日
Stephan
2018 年 5 月 19 日
Sorry,
but this is not the homework service here...
Best regards
Stephan
Walter Roberson
2018 年 5 月 19 日
You made a mistake in the equations. The second equation has y'' on the left hand side, but you used dx2 which is x'' .
madhan ravi
2018 年 5 月 19 日
madhan ravi
2018 年 5 月 19 日
Jan
2018 年 5 月 19 日
Please post the code as text. We cannot scroll to the right on your screenshot.
madhan ravi
2018 年 5 月 22 日
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Numeric Solvers についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

