Problem with too many inputs into bvp5c
Show older comments
Hello, I want to test whether bvp4c, bvp5c and bvp6c solvers produce the same solution. The problem I face is that bvp4c and bvp6c allow my ode and bc functions to have additional inputs. Namely, these solvers have the following syntax: function sol = bvp4c(ode, bc, solinit, options, varargin) function sol = bvp6c(ode, bc, solinit, options, varargin) The solver bvp5c however, does not allow for varargin: function sol = bvp5c(ode, bc, solinit, options)
So, does anyone know how to go about this issue? Is there a way to manually edit bvp5c to allow for additional inputs?
Thanks, Artem.
Accepted Answer
More Answers (0)
Categories
Find more on Boundary Value Problems in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!