diff scripts/optimization/fminsearch.m @ 15468:6437fa7263dd

use ' instead of ` in error messages, warnings and most comments * qtinfo/parser.h, file-io.cc, graphics.in.h, lex.ll, version.in.h, interp1.m, fminsearch.m, fix_depends.m, get_description.m: Use ' instead of ` in error messages, warnings and most comments.
author John W. Eaton <jwe@octave.org>
date Mon, 01 Oct 2012 18:32:12 -0400
parents e0525ecf156e
children bc924baa2c4e
line wrap: on
line diff
--- a/scripts/optimization/fminsearch.m	Mon Oct 01 18:30:44 2012 -0400
+++ b/scripts/optimization/fminsearch.m	Mon Oct 01 18:32:12 2012 -0400
@@ -103,7 +103,7 @@
 ##                   maximization.) Default is 1, maximization.
 ##                   set STOPIT(6)=-1 for minimization
 ##        If a non-empty fourth parameter string SAVIT is present, then
-##        `SAVE SAVIT x fmax nf' is executed after each inner iteration.
+##        'SAVE SAVIT x fmax nf' is executed after each inner iteration.
 ##        NB: x0 can be a matrix.  In the output argument, in SAVIT saves,
 ##            and in function calls, x has the same shape as x0.
 ##        NMSMAX(fun, x0, STOPIT, SAVIT, P1, P2,...) allows additional
@@ -257,7 +257,7 @@
 
     ##  One step of the Nelder-Mead simplex algorithm
     ##  NJH: Altered function calls and changed CNT to NF.
-    ##       Changed each `fr < f(1)' type test to `>' for maximization
+    ##       Changed each 'fr < f(1)' type test to '>' for maximization
     ##       and re-ordered function values after sort.
 
     vbar = (sum (V(:,1:n)')/n)';  # Mean value