Mercurial > hg > octave-nkf
annotate scripts/optimization/fzero.m @ 10358:72fab01e5d68
improve some size_t queries
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Thu, 25 Feb 2010 12:55:13 +0100 |
parents | 7c97da90fc8f |
children | bc475cd49147 |
rev | line source |
---|---|
8920 | 1 ## Copyright (C) 2008, 2009 VZLU Prague, a.s. |
8305 | 2 ## |
3 ## This file is part of Octave. | |
4 ## | |
5 ## Octave is free software; you can redistribute it and/or modify it | |
6 ## under the terms of the GNU General Public License as published by | |
7 ## the Free Software Foundation; either version 3 of the License, or (at | |
8 ## your option) any later version. | |
9 ## | |
10 ## Octave is distributed in the hope that it will be useful, but | |
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 ## General Public License for more details. | |
14 ## | |
15 ## You should have received a copy of the GNU General Public License | |
16 ## along with Octave; see the file COPYING. If not, see | |
17 ## <http://www.gnu.org/licenses/>. | |
18 ## | |
19 ## Author: Jaroslav Hajek <highegg@gmail.com> | |
20 | |
8467
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
21 ## -*- texinfo -*- |
9143
74d5c1a4ca96
Eliminate 'unbalanced parentheses in @def...' error during texi2pdf.
Rik <rdrider0-list@yahoo.com>
parents:
9051
diff
changeset
|
22 ## @deftypefn {Function File} {[@var{x}, @var{fval}, @var{info}, @var{output}] =} fzero (@var{fun}, @var{x0}, @var{options}) |
9051
1bf0ce0930be
Grammar check TexInfo in all .m files
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
23 ## Find a zero point of a univariate function. @var{fun} should be a function |
1bf0ce0930be
Grammar check TexInfo in all .m files
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
24 ## handle or name. @var{x0} specifies a starting point. @var{options} is a |
1bf0ce0930be
Grammar check TexInfo in all .m files
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
25 ## structure specifying additional options. Currently, @code{fzero} |
8515
ec2715c76039
fzero.m, fsolve.m: additional doc fixes
John W. Eaton <jwe@octave.org>
parents:
8507
diff
changeset
|
26 ## recognizes these options: @code{"FunValCheck"}, @code{"OutputFcn"}, |
ec2715c76039
fzero.m, fsolve.m: additional doc fixes
John W. Eaton <jwe@octave.org>
parents:
8507
diff
changeset
|
27 ## @code{"TolX"}, @code{"MaxIter"}, @code{"MaxFunEvals"}. |
ec2715c76039
fzero.m, fsolve.m: additional doc fixes
John W. Eaton <jwe@octave.org>
parents:
8507
diff
changeset
|
28 ## For description of these options, see @ref{doc-optimset,,optimset}. |
8467
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
29 ## |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
30 ## On exit, the function returns @var{x}, the approximate zero point |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
31 ## and @var{fval}, the function value thereof. |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
32 ## @var{info} is an exit flag that can have these values: |
10297
ed88ea036716
improve docs of fzero/fminbnd
Jaroslav Hajek <highegg@gmail.com>
parents:
10296
diff
changeset
|
33 ## |
8467
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
34 ## @itemize |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
35 ## @item 1 |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
36 ## The algorithm converged to a solution. |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
37 ## @item 0 |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
38 ## Maximum number of iterations or function evaluations has been exhausted. |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
39 ## @item -1 |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
40 ## The algorithm has been terminated from user output function. |
10337
7c97da90fc8f
check for discontinuities in fzero
Rik <rdrider0-list@yahoo.com>
parents:
10297
diff
changeset
|
41 ## @item -5 |
7c97da90fc8f
check for discontinuities in fzero
Rik <rdrider0-list@yahoo.com>
parents:
10297
diff
changeset
|
42 ## The algorithm may have converged to a singular point. |
8467
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
43 ## @end itemize |
8515
ec2715c76039
fzero.m, fsolve.m: additional doc fixes
John W. Eaton <jwe@octave.org>
parents:
8507
diff
changeset
|
44 ## @seealso{optimset, fsolve} |
8467
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
45 ## @end deftypefn |
8305 | 46 |
8467
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
47 ## This is essentially the ACM algorithm 748: Enclosing Zeros of |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
48 ## Continuous Functions due to Alefeld, Potra and Shi, ACM Transactions |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
49 ## on Mathematical Software, Vol. 21, No. 3, September 1995. Although |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
50 ## the workflow should be the same, the structure of the algorithm has |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
51 ## been transformed non-trivially; instead of the authors' approach of |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
52 ## sequentially calling building blocks subprograms we implement here a |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
53 ## FSM version using one interior point determination and one bracketing |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
54 ## per iteration, thus reducing the number of temporary variables and |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
55 ## simplifying the algorithm structure. Further, this approach reduces |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
56 ## the need for external functions and error handling. The algorithm has |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
57 ## also been slightly modified. |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
58 |
8648
ff61b53eb294
optimization: use PKG_ADD: comments instead of PKG_ADD file
John W. Eaton <jwe@octave.org>
parents:
8596
diff
changeset
|
59 ## PKG_ADD: __all_opts__ ("fzero"); |
ff61b53eb294
optimization: use PKG_ADD: comments instead of PKG_ADD file
John W. Eaton <jwe@octave.org>
parents:
8596
diff
changeset
|
60 |
8305 | 61 function [x, fval, info, output] = fzero (fun, x0, options = struct ()) |
8467
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
62 |
8596
8833c0b18eb2
enable default settings queries in optim funcs
Jaroslav Hajek <highegg@gmail.com>
parents:
8515
diff
changeset
|
63 ## Get default options if requested. |
8833c0b18eb2
enable default settings queries in optim funcs
Jaroslav Hajek <highegg@gmail.com>
parents:
8515
diff
changeset
|
64 if (nargin == 1 && ischar (fun) && strcmp (fun, 'defaults')) |
10296 | 65 x = optimset ("MaxIter", Inf, "MaxFunEvals", Inf, "TolX", 1e-8, \ |
8596
8833c0b18eb2
enable default settings queries in optim funcs
Jaroslav Hajek <highegg@gmail.com>
parents:
8515
diff
changeset
|
66 "OutputFcn", [], "FunValCheck", "off"); |
8833c0b18eb2
enable default settings queries in optim funcs
Jaroslav Hajek <highegg@gmail.com>
parents:
8515
diff
changeset
|
67 return; |
8833c0b18eb2
enable default settings queries in optim funcs
Jaroslav Hajek <highegg@gmail.com>
parents:
8515
diff
changeset
|
68 endif |
8833c0b18eb2
enable default settings queries in optim funcs
Jaroslav Hajek <highegg@gmail.com>
parents:
8515
diff
changeset
|
69 |
8305 | 70 if (nargin < 2 || nargin > 3) |
71 print_usage (); | |
72 endif | |
8467
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
73 |
8305 | 74 if (ischar (fun)) |
9464
e598248a060d
safer str2func use in optim functions
Jaroslav Hajek <highegg@gmail.com>
parents:
9143
diff
changeset
|
75 fun = str2func (fun, "global"); |
8305 | 76 endif |
77 | |
8467
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
78 ## TODO |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
79 ## displev = optimget (options, "Display", "notify"); |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
80 funvalchk = strcmpi (optimget (options, "FunValCheck", "off"), "on"); |
8305 | 81 outfcn = optimget (options, "OutputFcn"); |
10296 | 82 tolx = optimget (options, "TolX", 1e-8); |
8305 | 83 maxiter = optimget (options, "MaxIter", Inf); |
84 maxfev = optimget (options, "MaxFunEvals", Inf); | |
85 | |
86 persistent mu = 0.5; | |
87 | |
88 if (funvalchk) | |
8507 | 89 ## Replace fun with a guarded version. |
8305 | 90 fun = @(x) guarded_eval (fun, x); |
91 endif | |
92 | |
8507 | 93 ## The default exit flag if exceeded number of iterations. |
8467
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
94 info = 0; |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
95 niter = 0; |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
96 nfev = 0; |
8305 | 97 |
98 x = fval = a = fa = b = fb = NaN; | |
10296 | 99 eps = eps (class (x0)); |
8305 | 100 |
8507 | 101 ## Prepare... |
8467
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
102 a = x0(1); |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
103 fa = fun (a); |
8305 | 104 nfev = 1; |
105 if (length (x0) > 1) | |
106 b = x0(2); | |
8467
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
107 fb = fun (b); |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
108 nfev += 1; |
8305 | 109 else |
8507 | 110 ## Try to get b. |
8305 | 111 if (a == 0) |
112 aa = 1; | |
113 else | |
114 aa = a; | |
115 endif | |
116 for b = [0.9*aa, 1.1*aa, aa-1, aa+1, 0.5*aa 1.5*aa, -aa, 2*aa, -10*aa, 10*aa] | |
117 fb = fun (b); nfev += 1; | |
118 if (sign (fa) * sign (fb) <= 0) | |
119 break; | |
120 endif | |
121 endfor | |
122 endif | |
123 | |
124 if (b < a) | |
8467
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
125 u = a; |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
126 a = b; |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
127 b = u; |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
128 |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
129 fu = fa; |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
130 fa = fb; |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
131 fb = fu; |
8305 | 132 endif |
133 | |
134 if (! (sign (fa) * sign (fb) <= 0)) | |
8468
866492035ecf
fsolve.m, fzero.m: undo part of previous change
John W. Eaton <jwe@octave.org>
parents:
8467
diff
changeset
|
135 error ("fzero:bracket", "fzero: not a valid initial bracketing"); |
8305 | 136 endif |
137 | |
10337
7c97da90fc8f
check for discontinuities in fzero
Rik <rdrider0-list@yahoo.com>
parents:
10297
diff
changeset
|
138 slope0 = (fb - fa) / (b - a); |
7c97da90fc8f
check for discontinuities in fzero
Rik <rdrider0-list@yahoo.com>
parents:
10297
diff
changeset
|
139 |
8305 | 140 itype = 1; |
141 | |
142 if (abs (fa) < abs (fb)) | |
143 u = a; fu = fa; | |
144 else | |
145 u = b; fu = fb; | |
146 endif | |
147 | |
148 d = e = u; | |
149 fd = fe = fu; | |
150 mba = mu*(b - a); | |
151 while (niter < maxiter && nfev < maxfev) | |
152 switch (itype) | |
153 case 1 | |
8507 | 154 ## The initial test. |
8305 | 155 if (b - a <= 2*(2 * abs (u) * eps + tolx)) |
156 x = u; fval = fu; | |
157 info = 1; | |
158 break; | |
159 endif | |
160 if (abs (fa) <= 1e3*abs (fb) && abs (fb) <= 1e3*abs (fa)) | |
8507 | 161 ## Secant step. |
8305 | 162 c = u - (a - b) / (fa - fb) * fu; |
163 else | |
8507 | 164 ## Bisection step. |
8305 | 165 c = 0.5*(a + b); |
166 endif | |
167 d = u; fd = fu; | |
168 itype = 5; | |
169 case {2, 3} | |
170 l = length (unique ([fa, fb, fd, fe])); | |
171 if (l == 4) | |
8507 | 172 ## Inverse cubic interpolation. |
8305 | 173 q11 = (d - e) * fd / (fe - fd); |
174 q21 = (b - d) * fb / (fd - fb); | |
175 q31 = (a - b) * fa / (fb - fa); | |
176 d21 = (b - d) * fd / (fd - fb); | |
177 d31 = (a - b) * fb / (fb - fa); | |
178 q22 = (d21 - q11) * fb / (fe - fb); | |
179 q32 = (d31 - q21) * fa / (fd - fa); | |
180 d32 = (d31 - q21) * fd / (fd - fa); | |
181 q33 = (d32 - q22) * fa / (fe - fa); | |
182 c = a + q31 + q32 + q33; | |
183 endif | |
184 if (l < 4 || sign (c - a) * sign (c - b) > 0) | |
8507 | 185 ## Quadratic interpolation + newton. |
8305 | 186 a0 = fa; |
187 a1 = (fb - fa)/(b - a); | |
188 a2 = ((fd - fb)/(d - b) - a1) / (d - a); | |
8507 | 189 ## Modification 1: this is simpler and does not seem to be worse. |
8305 | 190 c = a - a0/a1; |
191 if (a2 != 0) | |
192 c = a - a0/a1; | |
193 for i = 1:itype | |
194 pc = a0 + (a1 + a2*(c - b))*(c - a); | |
195 pdc = a1 + a2*(2*c - a - b); | |
196 if (pdc == 0) | |
197 c = a - a0/a1; | |
198 break; | |
199 endif | |
200 c -= pc/pdc; | |
201 endfor | |
202 endif | |
203 endif | |
204 itype += 1; | |
205 case 4 | |
8507 | 206 ## Double secant step. |
8305 | 207 c = u - 2*(b - a)/(fb - fa)*fu; |
8507 | 208 ## Bisect if too far. |
8305 | 209 if (abs (c - u) > 0.5*(b - a)) |
210 c = 0.5 * (b + a); | |
211 endif | |
212 itype = 5; | |
213 case 5 | |
8507 | 214 ## Bisection step. |
8305 | 215 c = 0.5 * (b + a); |
216 itype = 2; | |
217 endswitch | |
218 | |
8507 | 219 ## Don't let c come too close to a or b. |
8305 | 220 delta = 2*0.7*(2 * abs (u) * eps + tolx); |
221 if ((b - a) <= 2*delta) | |
222 c = (a + b)/2; | |
223 else | |
224 c = max (a + delta, min (b - delta, c)); | |
225 endif | |
226 | |
8507 | 227 ## Calculate new point. |
8305 | 228 x = c; |
229 fval = fc = fun (c); | |
230 niter ++; nfev ++; | |
231 | |
8507 | 232 ## Modification 2: skip inverse cubic interpolation if |
233 ## nonmonotonicity is detected. | |
8305 | 234 if (sign (fc - fa) * sign (fc - fb) >= 0) |
8507 | 235 ## The new point broke monotonicity. |
236 ## Disable inverse cubic. | |
8305 | 237 fe = fc; |
238 else | |
239 e = d; fe = fd; | |
240 endif | |
241 | |
8507 | 242 ## Bracketing. |
8305 | 243 if (sign (fa) * sign (fc) < 0) |
244 d = b; fd = fb; | |
245 b = c; fb = fc; | |
246 elseif (sign (fb) * sign (fc) < 0) | |
247 d = a; fd = fa; | |
248 a = c; fa = fc; | |
249 elseif (fc == 0) | |
250 a = b = c; fa = fb = fc; | |
251 info = 1; | |
252 break; | |
253 else | |
8507 | 254 ## This should never happen. |
8468
866492035ecf
fsolve.m, fzero.m: undo part of previous change
John W. Eaton <jwe@octave.org>
parents:
8467
diff
changeset
|
255 error ("fzero:bracket", "fzero: zero point is not bracketed"); |
8305 | 256 endif |
257 | |
8507 | 258 ## If there's an output function, use it now. |
8305 | 259 if (outfcn) |
10296 | 260 optv.funccount = nfev; |
8305 | 261 optv.fval = fval; |
262 optv.iteration = niter; | |
263 if (outfcn (x, optv, "iter")) | |
264 info = -1; | |
265 break; | |
266 endif | |
267 endif | |
268 | |
269 if (abs (fa) < abs (fb)) | |
270 u = a; fu = fa; | |
271 else | |
272 u = b; fu = fb; | |
273 endif | |
274 if (b - a <= 2*(2 * abs (u) * eps + tolx)) | |
275 info = 1; | |
276 break; | |
277 endif | |
278 | |
8507 | 279 ## Skip bisection step if successful reduction. |
8305 | 280 if (itype == 5 && (b - a) <= mba) |
281 itype = 2; | |
282 endif | |
283 if (itype == 2) | |
284 mba = mu * (b - a); | |
285 endif | |
286 endwhile | |
287 | |
10337
7c97da90fc8f
check for discontinuities in fzero
Rik <rdrider0-list@yahoo.com>
parents:
10297
diff
changeset
|
288 ## Check solution for a singularity by examining slope |
7c97da90fc8f
check for discontinuities in fzero
Rik <rdrider0-list@yahoo.com>
parents:
10297
diff
changeset
|
289 if (info == 1) |
7c97da90fc8f
check for discontinuities in fzero
Rik <rdrider0-list@yahoo.com>
parents:
10297
diff
changeset
|
290 if ((b - a) != 0 && abs ((fb - fa)/(b - a) / slope0) > max (1e6, 0.5/tolx)) |
7c97da90fc8f
check for discontinuities in fzero
Rik <rdrider0-list@yahoo.com>
parents:
10297
diff
changeset
|
291 info = -5; |
7c97da90fc8f
check for discontinuities in fzero
Rik <rdrider0-list@yahoo.com>
parents:
10297
diff
changeset
|
292 endif |
7c97da90fc8f
check for discontinuities in fzero
Rik <rdrider0-list@yahoo.com>
parents:
10297
diff
changeset
|
293 endif |
7c97da90fc8f
check for discontinuities in fzero
Rik <rdrider0-list@yahoo.com>
parents:
10297
diff
changeset
|
294 |
8305 | 295 output.iterations = niter; |
10296 | 296 output.funcCount = nfev; |
8305 | 297 output.bracket = [a, b]; |
298 output.bracketf = [fa, fb]; | |
299 | |
300 endfunction | |
301 | |
8507 | 302 ## An assistant function that evaluates a function handle and checks for |
8467
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
303 ## bad results. |
8305 | 304 function fx = guarded_eval (fun, x) |
305 fx = fun (x); | |
306 fx = fx(1); | |
307 if (! isreal (fx)) | |
8468
866492035ecf
fsolve.m, fzero.m: undo part of previous change
John W. Eaton <jwe@octave.org>
parents:
8467
diff
changeset
|
308 error ("fzero:notreal", "fzero: non-real value encountered"); |
8305 | 309 elseif (isnan (fx)) |
8468
866492035ecf
fsolve.m, fzero.m: undo part of previous change
John W. Eaton <jwe@octave.org>
parents:
8467
diff
changeset
|
310 error ("fzero:isnan", "fzero: NaN value encountered"); |
8305 | 311 endif |
312 endfunction | |
313 | |
10296 | 314 %!shared opt0 |
315 %! opt0 = optimset ("tolx", 0); | |
316 %!assert(fzero(@cos, [0, 3], opt0), pi/2, 10*eps) | |
317 %!assert(fzero(@(x) x^(1/3) - 1e-8, [0,1], opt0), 1e-24, 1e-22*eps) |