chiark / gitweb /
updated .m help
authorstevenj <stevenj@alum.mit.edu>
Tue, 4 Sep 2007 01:35:45 +0000 (21:35 -0400)
committerstevenj <stevenj@alum.mit.edu>
Tue, 4 Sep 2007 01:35:45 +0000 (21:35 -0400)
darcs-hash:20070904013545-c8de0-2f4a0b3f51a776918e163594cfa745e4969a803b.gz

octave/nlopt_minimize.m

index d3507944c895ccdca0543fe449addb154886d7a6..3f0c30c2da13e2df3780948efe53a34046f232e7 100644 (file)
 % 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").