comparison scripts/optimization/fzero.m @ 25003:2365c2661b3c stable

doc: Spellcheck documentation ahead of 4.4 release. * aspell-octave.en.pws: Add new words to Octave-only spelling dictionary. Remove exception words which are no longer used in manual. * basics.txi, bugs.txi, func.txi, geometry.txi, install.txi, matrix.txi, package.txi, plot.txi, poly.txi, preface.txi, quad.txi, sparse.txi, strings.txi, vectorize.txi, data.cc, defaults.cc, file-io.cc, pinv.cc, quadcc.cc, qz.cc, rand.cc, schur.cc, syscalls.cc, sysdep.cc, toplev.cc, amd.cc, audioread.cc, colamd.cc, dmperm.cc, symrcm.cc, quadgk.m, quadl.m, imfinfo.m, rgb2gray.m, javachk.m, usejava.m, unpack.m, fzero.m, glpk.m, pqpnonneg.m, stemleaf.m, print.m, polyfit.m, blackman.m, bicgstab.m, cgs.m, eigs.m, pcg.m, tfqmr.m, gallery.m, rosser.m, toeplitz.m, vander.m, isstrprop.m: Add @nospell{} macro around proper names and other words which aspell should not check. Correct misspellings identified by aspell.
author Rik <rik@octave.org>
date Mon, 26 Mar 2018 10:45:04 -0700
parents 194eb4bd202b
children 6652d3823428
comparison
equal deleted inserted replaced
25002:64c6e8bfc9e5 25003:2365c2661b3c
70 ## 70 ##
71 ## @itemize 71 ## @itemize
72 ## @item iterations 72 ## @item iterations
73 ## Number of iterations through loop. 73 ## Number of iterations through loop.
74 ## 74 ##
75 ## @item nfev 75 ## @item @nospell{nfev}
76 ## Number of function evaluations. 76 ## Number of function evaluations.
77 ## 77 ##
78 ## @item bracketx 78 ## @item bracketx
79 ## A two-element vector with the final bracketing of the zero along the 79 ## A two-element vector with the final bracketing of the zero along the
80 ## x-axis. 80 ## x-axis.
84 ## y-axis. 84 ## y-axis.
85 ## @end itemize 85 ## @end itemize
86 ## @seealso{optimset, fsolve} 86 ## @seealso{optimset, fsolve}
87 ## @end deftypefn 87 ## @end deftypefn
88 88
89 ## This is essentially the ACM algorithm 748: Enclosing Zeros of 89 ## This is essentially the @nospell{ACM} algorithm 748: Enclosing Zeros of
90 ## Continuous Functions due to Alefeld, Potra and Shi, ACM Transactions 90 ## Continuous Functions due to Alefeld, Potra and Shi, @nospell{ACM}
91 ## on Mathematical Software, Vol. 21, No. 3, September 1995. Although 91 ## Transactions on Mathematical Software, Vol. 21, No. 3, September 1995.
92 ## the workflow should be the same, the structure of the algorithm has 92 ## Although the workflow should be the same, the structure of the algorithm has
93 ## been transformed non-trivially; instead of the authors' approach of 93 ## been transformed non-trivially; instead of the authors' approach of
94 ## sequentially calling building blocks subprograms we implement here a 94 ## sequentially calling building blocks subprograms we implement here a
95 ## FSM version using one interior point determination and one bracketing 95 ## FSM version using one interior point determination and one bracketing
96 ## per iteration, thus reducing the number of temporary variables and 96 ## per iteration, thus reducing the number of temporary variables and
97 ## simplifying the algorithm structure. Further, this approach reduces 97 ## simplifying the algorithm structure. Further, this approach reduces