a boundary value problem
Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Ältere Kommentare anzeigen
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

Antworten (1)
Alex Mcaulley
am 22 Mai 2019
Indexing in Matlab starts in 1, then:
f(:,0)
is not a valid indexing. It should be:
f(:,1)
Diese Frage ist geschlossen.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!