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에서 Assumptions에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

