comparison scripts/help/__unimplemented__.m @ 20568:fcb792acab9b

Moving ode45, odeset, odeget, and levenshtein from odepkg to core. * libinterp/corefcn/levenshtein.cc: move function from odepkg into core * libinterp/corefcn/module.mk: include levenshtein.cc * scripts/ode: move ode45, odeset, odeget, and all dependencies from odepkg into core * scripts/module.mk: include them * doc/interpreter/diffeq.txi: add documentation for ode45, odeset, odeget * NEWS: announce functions included with this changeset * scripts/help/__unimplemented__.m: removed new functions
author jcorno <jacopo.corno@gmail.com>
date Thu, 24 Sep 2015 12:58:46 +0200
parents 7503499a252b
children e5f36a7854a5
comparison
equal deleted inserted replaced
20567:2480bbcd1333 20568:fcb792acab9b
80 80
81 case "matlabrc" 81 case "matlabrc"
82 txt = ["matlabrc is not implemented. ", ... 82 txt = ["matlabrc is not implemented. ", ...
83 'Octave uses the file ".octaverc" instead.']; 83 'Octave uses the file ".octaverc" instead.'];
84 84
85 case {"ode113", "ode15i", "ode15s", "ode23", "ode23s", "ode23t", ... 85 case {"ode113", "ode15i", "ode15s", "ode23", "ode23s", "ode23t", "ode23tb"}
86 "ode23tb", "ode45", "odeget", "odeset"} 86 txt = ["Octave provides lsode and ode45 for solving differential equations. ", ...
87 txt = ["Octave provides lsode for solving differential equations. ", ... 87 "For more information try @code{help lsode}, @code{help ode45}. ", ...
88 "For more information try @code{help lsode}. ", ...
89 "Matlab-compatible ODE functions are provided by the odepkg ", ... 88 "Matlab-compatible ODE functions are provided by the odepkg ", ...
90 "package. See @url{http://octave.sourceforge.net/odepkg/}."]; 89 "package. See @url{http://octave.sourceforge.net/odepkg/}."];
91 90
92 case "startup" 91 case "startup"
93 txt = ["startup is not implemented. ", ... 92 txt = ["startup is not implemented. ", ...