フィルターのクリア

Doubt in coding a systems of ODEs with bvp4

2 ビュー (過去 30 日間)
T S Singh
T S Singh 2017 年 12 月 17 日
コメント済み: T S Singh 2017 年 12 月 18 日
I have a coupled ODE in terms of two variables x and y, x''''=A*x+B*y+C*y''''; y''''=D*y+E*x+F*x''''; Given with 8 boundary conditions. How will I write the function to expressed the systems of coupled ODEs to use for 'bvp4' ??? As the some of the coupling terms contains the highest derivative of the two dependent variables (i.e. y'''' in equation of x and x'''' in the equation of y)???

採用された回答

Torsten
Torsten 2017 年 12 月 18 日
x''''=A*x+B*y+C*(D*y+E*x+F*x'''') -> x''''=((A+C*E)*x+(B+C*D)*y)/(1-C*F)
y''''=D*y+E*x+F*(A*x+B*y+C*y'''') -> y''''=((E+A*F)*x+(D+B*F)*y)/(1-C*F)
Best wishes
Torsten.
  1 件のコメント
T S Singh
T S Singh 2017 年 12 月 18 日
Thanks Torsten, How did I miss this :-)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNumerical Integration and Differential Equations についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by