# HG changeset patch # User Carlo de Falco # Date 1477322942 -7200 # Mon Oct 24 17:29:02 2016 +0200 # Branch stable # Node ID 7fc36e3c7eb4c1338b8a8ad17ecc8cc2c6442312 # Parent 04fc7e9c5f96270067f0292a82513a981e6f8a95 document unimplemented options in ode23 and ode45. * scripts/ode/ode{23,45}.m : mention in the docstring that the options "Refine" and "MvPattern" are not implemented yet. diff --git a/scripts/ode/ode23.m b/scripts/ode/ode23.m --- a/scripts/ode/ode23.m +++ b/scripts/ode/ode23.m @@ -53,6 +53,8 @@ ## ## The optional fourth argument @var{ode_opt} specifies non-default options to ## the ODE solver. It is a structure generated by @code{odeset}. +## Note that the options @code{MvPattern} and @code{Refine} are not +## implemented yet and are only accepted for compatibility. ## ## The function typically returns two outputs. Variable @var{t} is a ## column vector and contains the times where the solution was found. The diff --git a/scripts/ode/ode45.m b/scripts/ode/ode45.m --- a/scripts/ode/ode45.m +++ b/scripts/ode/ode45.m @@ -51,6 +51,8 @@ ## ## The optional fourth argument @var{ode_opt} specifies non-default options to ## the ODE solver. It is a structure generated by @code{odeset}. +## Note that the options @code{MvPattern} and @code{Refine} are not +## implemented yet and are only accepted for compatibility. ## ## The function typically returns two outputs. Variable @var{t} is a ## column vector and contains the times where the solution was found. The