# HG changeset patch # User jwe # Date 1025284675 0 # Node ID 3030cb6cb559887ab8d3d5e7b396441c235ef74f # Parent 05485f53259924455c172a3327a39a9ce4b05907 [project @ 2002-06-28 17:17:55 by jwe] diff --git a/src/DLD-FUNCTIONS/daspk.cc b/src/DLD-FUNCTIONS/daspk.cc --- a/src/DLD-FUNCTIONS/daspk.cc +++ b/src/DLD-FUNCTIONS/daspk.cc @@ -174,6 +174,9 @@ times that the DAE solver should not integrate past. It is useful for\n\ avoiding difficulties with singularities and points where there is a\n\ discontinuity in the derivative.\n\ +\n\ +You can use the function @code{daspk_options} to set optional\n\ +parameters for @code{daspk}.\n\ @end deftypefn") { octave_value_list retval; diff --git a/src/DLD-FUNCTIONS/dassl.cc b/src/DLD-FUNCTIONS/dassl.cc --- a/src/DLD-FUNCTIONS/dassl.cc +++ b/src/DLD-FUNCTIONS/dassl.cc @@ -174,6 +174,9 @@ times that the DAE solver should not integrate past. It is useful for\n\ avoiding difficulties with singularities and points where there is a\n\ discontinuity in the derivative.\n\ +\n\ +You can use the function @code{dassl_options} to set optional\n\ +parameters for @code{dassl}.\n\ @end deftypefn") { octave_value_list retval; diff --git a/src/DLD-FUNCTIONS/fsolve.cc b/src/DLD-FUNCTIONS/fsolve.cc --- a/src/DLD-FUNCTIONS/fsolve.cc +++ b/src/DLD-FUNCTIONS/fsolve.cc @@ -155,6 +155,9 @@ Given @var{fcn}, the name of a function of the form @code{f (@var{x})}\n\ and an initial starting point @var{x0}, @code{fsolve} solves the set of\n\ equations such that @code{f(@var{x}) == 0}.\n\ +\n\ +You can use the function @code{fsolve_options} to set optional\n\ +parameters for @code{fsolve}.\n\ @end deftypefn") { octave_value_list retval; diff --git a/src/DLD-FUNCTIONS/lsode.cc b/src/DLD-FUNCTIONS/lsode.cc --- a/src/DLD-FUNCTIONS/lsode.cc +++ b/src/DLD-FUNCTIONS/lsode.cc @@ -182,6 +182,9 @@ times that the ODE solver should not integrate past. It is useful for\n\ avoiding difficulties with singularities and points where there is a\n\ discontinuity in the derivative.\n\ +\n\ +You can use the function @code{lsode_options} to set optional\n\ +parameters for @code{lsode}.\n\ @end deftypefn") { octave_value_list retval; diff --git a/src/DLD-FUNCTIONS/quad.cc b/src/DLD-FUNCTIONS/quad.cc --- a/src/DLD-FUNCTIONS/quad.cc +++ b/src/DLD-FUNCTIONS/quad.cc @@ -149,6 +149,9 @@ The value of @var{nfun} indicates how many function evaluations were\n\ required, and @var{err} contains an estimate of the error in the\n\ solution.\n\ +\n\ +You can use the function @code{quad_options} to set optional\n\ +parameters for @code{quad}.\n\ @end deftypefn") { octave_value_list retval;