From 236e4e5e9be7fef858ad334fe74165e59c4c7df3 Mon Sep 17 00:00:00 2001 From: Paul Bignier Date: Fri, 21 Mar 2014 15:43:13 +0100 Subject: [PATCH] Optimization help: Minor typo fix Change-Id: Icf7c99c20a37beaa5a1da2c5405752befcad4ce5 --- scilab/modules/optimization/help/en_US/optim.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scilab/modules/optimization/help/en_US/optim.xml b/scilab/modules/optimization/help/en_US/optim.xml index 0f7b06a..a9e2580 100644 --- a/scilab/modules/optimization/help/en_US/optim.xml +++ b/scilab/modules/optimization/help/en_US/optim.xml @@ -737,10 +737,10 @@ // Upper and lower bounds on x and setting up the algorithm to "gc" [fopt, xopt, gopt] = optim(cost, "b", [-1; 0; 2], [0.5; 1; 4], x0, "gc") - // Bound on the number of call to the objective function + // Bound on the number of calls to the objective function [fopt, xopt, gopt] = optim(cost, "b", [-1; 0; 2], [0.5; 1; 4], x0, "gc", "ar", 3) - // Set max number of call to the objective function (3) + // Set max number of calls to the objective function (3) // Set max number of iterations (100) // Set stopping threshold on the value of f (1e-6), // on the value of the norm of the gradient of the objective function (1e-6) -- 1.7.9.5