Info
この質問は閉じられています。 編集または回答するには再度開いてください。
a boundary value problem
2 ビュー (過去 30 日間)
古いコメントを表示
I get the code like this. this is a code trying to solve a boundary value problem. without changing the parameter inside fdode() how can I fix this to solve a general boundary value problem.

here is the problem error

0 件のコメント
回答 (1 件)
Alex Mcaulley
2019 年 5 月 22 日
Indexing in Matlab starts in 1, then:
f(:,0)
is not a valid indexing. It should be:
f(:,1)
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!