From 8ed756e490716618601e12b2171970e314d7b02d Mon Sep 17 00:00:00 2001 From: stevenj Date: Mon, 3 Sep 2007 21:35:45 -0400 Subject: [PATCH] updated .m help darcs-hash:20070904013545-c8de0-2f4a0b3f51a776918e163594cfa745e4969a803b.gz --- octave/nlopt_minimize.m | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/octave/nlopt_minimize.m b/octave/nlopt_minimize.m index d350794..3f0c30c 100644 --- a/octave/nlopt_minimize.m +++ b/octave/nlopt_minimize.m @@ -46,16 +46,16 @@ % for the accuracy of the minimum function value/x. % % The algorithm should be one of the following constants (name and -% interpretation are the same as for the C function): -% -% Derivative-free algorithms: -% NLOPT_GN_DIRECT, NLOPT_GN_DIRECT_L, -% NLOPT_GN_DIRECT_L_RAND, -% NLOPT_GN_ORIG_DIRECT, NLOPT_GN_ORIG_DIRECT_L, -% NLOPT_LN_SUBPLEX -% -% Gradient-based algorithms: -% NLOPT_GD_STOGO, NLOPT_GD_STOGO_RAND, NLOPT_LD_LBFGS +% interpretation are the same as for the C function). Names with +% _G*_ are global optimization, and names with _L*_ are local +% optimization. Names with _*N_ are derivative-free, while names +% with _*D_ are gradient-based algorithms. Algorithms: +% +% NLOPT_GN_DIRECT, NLOPT_GN_DIRECT_L, NLOPT_GN_DIRECT_L_RAND, +% NLOPT_GN_DIRECT_NOSCAL, NLOPT_GN_DIRECT_L_NOSCAL, +% NLOPT_GN_DIRECT_L_RAND_NOSCAL, NLOPT_GN_ORIG_DIRECT, NLOPT_GN_ORIG_DIRECT_L, +% NLOPT_LN_SUBPLEX, NLOPT_GD_STOGO, NLOPT_GD_STOGO_RAND, NLOPT_LD_LBFGS, +% NLOPT_LN_PRAXIS, NLOPT_LD_VAR1, NLOPT_LD_VAR2 % % For more information on individual functions, see their individual % help pages (e.g. "help NLOPT_LN_SUBPLEX"). -- 2.30.2