Solving a third order ODE in MATLAB
이전 댓글 표시
Hi, MATLAB is quite about this command:
syms a h Y(x) g x B E T
D3Y = diff(Y, 3)
eqn = a.*D3Y -0.5*x^2*Y == (abs(Y))
D2Y = diff(Y, 2)
DY = diff(Y)
cond1 = Y(0) == 1;
cond2 = DY(0) == 0;
cond3 = D2Y(0) == 0
Y(x) = dsolve(eqn, cond1, cond2, cond3)
latex(Y(x))
Is there a limit here for solving it? Thanks
채택된 답변
추가 답변 (3개)
Sergio Manzetti
2018년 2월 14일
0 개 추천
댓글 수: 2
Sergio Manzetti
2018년 2월 14일
Karan Gill
2018년 2월 14일
편집: Karan Gill
2018년 2월 14일
Is this what you tried? Didn't work for me.
Could you post your input to Wolfram?
Sergio Manzetti
2018년 2월 15일
편집: Sergio Manzetti
2018년 2월 15일
댓글 수: 3
Torsten
2018년 2월 15일
You used
eqn = a.*D3Y -0.5*x^2*Y == Y
instead of
eqn = a.*D3Y -0.5*x^2*Y == abs(Y)
Best wishes
Torsten.
Karan Gill
2018년 2월 15일
Thanks for catching that. I also noticed the third condition is different.
Torsten
2018년 2월 15일
... and I'm surprised that the solution does not depend on "a".
Sergio Manzetti
2018년 2월 15일
0 개 추천
댓글 수: 2
Karan Gill
2018년 2월 15일
Thanks for the clarifications. I'll investigate. Note that cond3 is different in your two codes.
Sergio Manzetti
2018년 2월 15일
편집: Sergio Manzetti
2018년 2월 15일
카테고리
도움말 센터 및 File Exchange에서 Common Operations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!