Solving Nonlinear system of differential equations using Matlab

1 次查看(过去 30 天)
How can i solve this system,
u''=(w'^2)'
w''''=(u'w'+w'^3)'
I have a problem writing the following expressions (w'^2)' and (w'^3)' in the standard form of Matlab ode solvers
Thanks
  3 个评论
Walter Roberson
Walter Roberson 2015-6-24
Torsten, somehow your answer got marked as potential spam. I do not know if it would have been visible to non-moderators.

请先登录,再进行评论。

采纳的回答

Torsten
Torsten 2015-6-22
u''=2w'*w''
w''''=u''*w'+u'*w''+3w'^2*w''=5w'^2'w''+u'*w''

->

u1'=u2
w1'=w2
w2'=w3
w3'=w4
u2'=2*w2*w3
w4'=5*w2'^2*w3+u2*w3

Here,

u1=u, u2=u', w1=w, w2=w', w3=w'', w4=w'''.

Best wishes

Torsten.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Programming 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by