changeset 20911:c19f128ea6df

add file missing from commit * scripts/ode/private/known_option_names.m: new file.
author Carlo de Falco <carlo.defalco@polimi.it>
date Wed, 16 Dec 2015 19:39:59 +0100
parents 359476667c4c
children ece3bb10c712
files scripts/ode/private/known_option_names.m
diffstat 1 files changed, 35 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/ode/private/known_option_names.m	Wed Dec 16 19:39:59 2015 +0100
@@ -0,0 +1,35 @@
+## Copyright (C) 2015, Carlo de Falco
+##
+## This file is part of Octave.
+##
+## Octave is free software; you can redistribute it and/or modify it
+## under the terms of the GNU General Public License as published by
+## the Free Software Foundation; either version 3 of the License, or (at
+## your option) any later version.
+##
+## Octave is distributed in the hope that it will be useful, but
+## WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+## General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with Octave; see the file COPYING.  If not, see
+## <http://www.gnu.org/licenses/>.
+
+## -*- texinfo -*-
+## @deftypefn  {} {@var{val} =} known_option_names ()
+## Return a list of known names for ode options.
+## @seealso{odeset,odeget}
+## @end deftypefn
+
+function ret = known_option_names ()
+
+ret = {"AbsTol"; "BDF"; "Events"; "InitialSlope";
+       "InitialStep"; "Jacobian"; "JConstant"; "JPattern";
+       "Mass"; "MassConstant"; "MassSingular"; "MaxOrder";
+       "MaxStep"; "MStateDependence"; "MvPattern";
+       "NonNegative"; "NormControl"; "OutputFcn"; "OutputSel";
+       "Refine"; "RelTol"; "Stats"; "Vectorized";
+       "TimeStepSize"; "TimeStepNumber"};
+
+endfunction