From: <i7...@us...> - 2012-05-24 07:24:42
|
Revision: 10514 http://octave.svn.sourceforge.net/octave/?rev=10514&view=rev Author: i7tiol Date: 2012-05-24 07:24:35 +0000 (Thu, 24 May 2012) Log Message: ----------- Format corrections to help. Modified Paths: -------------- trunk/octave-forge/main/optim/inst/cauchy.m trunk/octave-forge/main/optim/inst/nonlin_min.m Modified: trunk/octave-forge/main/optim/inst/cauchy.m =================================================================== --- trunk/octave-forge/main/optim/inst/cauchy.m 2012-05-24 06:50:59 UTC (rev 10513) +++ trunk/octave-forge/main/optim/inst/cauchy.m 2012-05-24 07:24:35 UTC (rev 10514) @@ -24,7 +24,7 @@ ## ## @example ## @group -## d = cauchy(16,1.5,0,@(x) exp(x)); +## d = cauchy(16, 1.5, 0, @@(x) exp(x)); ## @result{} d(2) = 1.0000 # first (2-1) derivative of function f (index starts from zero) ## @end group ## @end example Modified: trunk/octave-forge/main/optim/inst/nonlin_min.m =================================================================== --- trunk/octave-forge/main/optim/inst/nonlin_min.m 2012-05-24 06:50:59 UTC (rev 10513) +++ trunk/octave-forge/main/optim/inst/nonlin_min.m 2012-05-24 07:24:35 UTC (rev 10514) @@ -210,10 +210,10 @@ ## a way, it must return the entries (columns) of the gradient ## (jacobian) as fields of a structure under the respective parameter ## names. If the hessian function is configured in such a way, it must -## return a structure (say @code{h}) with fields e.g. as @code{h.a.b = -## value} for @{value} being the 2nd partial derivative with respect to -## @code{a} and @code{b}. There is no need to also specify the field -## @code{h.b.a} in this example. +## return a structure (say @code{h}) with fields e.g. as +## @code{h.a.b = value} for @code{value} being the 2nd partial derivative +## with respect to @code{a} and @code{b}. There is no need to also +## specify the field @code{h.b.a} in this example. ## ## Similarly, for specifying linear constraints, instead of the matrix ## (called @code{m} above), a structure containing the rows of the This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |