# HG changeset patch # User Nicholas R. Jankowski # Date 1712285456 14400 # Node ID d7f1aae5be0f3a31e87f6a189bd196dc9f582e19 # Parent 5bc48a35b79237f05350671428e2898abc6aabeb# Parent a2a202991cc78cbdc4cf5b9ee4013520a3cbce13 maint: Merge stable to default. diff -r 5bc48a35b792 -r d7f1aae5be0f doc/interpreter/nonlin.txi --- a/doc/interpreter/nonlin.txi Thu Apr 04 18:23:26 2024 -0700 +++ b/doc/interpreter/nonlin.txi Thu Apr 04 22:50:56 2024 -0400 @@ -197,15 +197,15 @@ the function, @code{F}, being minimized. E.g., @w{@code{F = F(x, C)}}. Octave's minimizer functions are designed to only pass one optimization variable to @code{F}, but parameter passing can be accomplished by defining -an @ref{Anonymous Functions} that contains the necessary parameter(s). See -the example below: +an @ref{Anonymous Functions,,Anonymous Function} that contains the necessary +parameter(s). See the example below: @example @group A = 2; B = 3; f = @@(x) sin (A*x + B); fminbnd (f, 0, 2) -@result{} 0.8562 + @result{} 0.8562 @end group @end example @@ -217,10 +217,10 @@ @group B = 4; fminbnd (f, 0, 2) -@result{} 0.8562 + @result{} 0.8562 f = @@(x) sin (A*x + B); fminbnd (f, 0, 2) -@result{} 0.3562 + @result{} 0.3562 @end group @end example