a boundary value problem
信息
此问题已关闭。 请重新打开它进行编辑或回答。
显示 更早的评论
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!