Mercurial > hg > octave-lyh
annotate scripts/optimization/fzero.m @ 8596:8833c0b18eb2
enable default settings queries in optim funcs
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Tue, 27 Jan 2009 08:15:08 +0100 |
parents | ec2715c76039 |
children | ff61b53eb294 |
rev | line source |
---|---|
8305 | 1 ## Copyright (C) 2008 VZLU Prague, a.s. |
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 -*- |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
22 ## @deftypefn{Function File}{[@var{x}, @var{fval}, @var{info}, @var{output}] =} fzero (@var{fun}, @var{x0}, @var{options}) |
8515
ec2715c76039
fzero.m, fsolve.m: additional doc fixes
John W. Eaton <jwe@octave.org>
parents:
8507
diff
changeset
|
23 ## Find a zero point of a univariate function. @var{fun} should be a function |
8467
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
24 ## handle or name. @var{x0} specifies a starting point. @var{options} is a |
8515
ec2715c76039
fzero.m, fsolve.m: additional doc fixes
John W. Eaton <jwe@octave.org>
parents:
8507
diff
changeset
|
25 ## structure specifying additional options. Currently, @code{fzero} |
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: |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
33 ## @itemize |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
34 ## @item 1 |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
35 ## 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
|
36 ## @item 0 |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
37 ## 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
|
38 ## @item -1 |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
39 ## The algorithm has been terminated from user output function. |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
40 ## @item -2 |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
41 ## A general unexpected error. |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
42 ## @item -3 |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
43 ## A non-real value encountered. |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
44 ## @item -4 |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
45 ## A NaN value encountered. |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
46 ## @end itemize |
8515
ec2715c76039
fzero.m, fsolve.m: additional doc fixes
John W. Eaton <jwe@octave.org>
parents:
8507
diff
changeset
|
47 ## @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
|
48 ## @end deftypefn |
8305 | 49 |
8467
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
50 ## 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
|
51 ## 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
|
52 ## 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
|
53 ## 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
|
54 ## 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
|
55 ## 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
|
56 ## 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
|
57 ## 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
|
58 ## 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
|
59 ## 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
|
60 ## 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
|
61 |
8305 | 62 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
|
63 |
8596
8833c0b18eb2
enable default settings queries in optim funcs
Jaroslav Hajek <highegg@gmail.com>
parents:
8515
diff
changeset
|
64 ## Get default options if requested. |
8833c0b18eb2
enable default settings queries in optim funcs
Jaroslav Hajek <highegg@gmail.com>
parents:
8515
diff
changeset
|
65 if (nargin == 1 && ischar (fun) && strcmp (fun, 'defaults')) |
8833c0b18eb2
enable default settings queries in optim funcs
Jaroslav Hajek <highegg@gmail.com>
parents:
8515
diff
changeset
|
66 x = optimset ("MaxIter", Inf, "MaxFunEvals", Inf, "TolX", 0, \ |
8833c0b18eb2
enable default settings queries in optim funcs
Jaroslav Hajek <highegg@gmail.com>
parents:
8515
diff
changeset
|
67 "OutputFcn", [], "FunValCheck", "off"); |
8833c0b18eb2
enable default settings queries in optim funcs
Jaroslav Hajek <highegg@gmail.com>
parents:
8515
diff
changeset
|
68 return; |
8833c0b18eb2
enable default settings queries in optim funcs
Jaroslav Hajek <highegg@gmail.com>
parents:
8515
diff
changeset
|
69 endif |
8833c0b18eb2
enable default settings queries in optim funcs
Jaroslav Hajek <highegg@gmail.com>
parents:
8515
diff
changeset
|
70 |
8305 | 71 if (nargin < 2 || nargin > 3) |
72 print_usage (); | |
73 endif | |
8467
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
74 |
8305 | 75 if (ischar (fun)) |
76 fun = str2func (fun); | |
77 endif | |
78 | |
8467
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
79 ## TODO |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
80 ## 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
|
81 funvalchk = strcmpi (optimget (options, "FunValCheck", "off"), "on"); |
8305 | 82 outfcn = optimget (options, "OutputFcn"); |
83 tolx = optimget (options, "TolX", 0); | |
84 maxiter = optimget (options, "MaxIter", Inf); | |
85 maxfev = optimget (options, "MaxFunEvals", Inf); | |
86 | |
87 persistent mu = 0.5; | |
88 | |
89 if (funvalchk) | |
8507 | 90 ## Replace fun with a guarded version. |
8305 | 91 fun = @(x) guarded_eval (fun, x); |
92 endif | |
93 | |
8507 | 94 ## 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
|
95 info = 0; |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
96 niter = 0; |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8305
diff
changeset
|
97 nfev = 0; |
8305 | 98 |
99 x = fval = a = fa = b = fb = NaN; | |
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 | |
138 itype = 1; | |
139 | |
140 if (abs (fa) < abs (fb)) | |
141 u = a; fu = fa; | |
142 else | |
143 u = b; fu = fb; | |
144 endif | |
145 | |
146 d = e = u; | |
147 fd = fe = fu; | |
148 mba = mu*(b - a); | |
149 while (niter < maxiter && nfev < maxfev) | |
150 switch (itype) | |
151 case 1 | |
8507 | 152 ## The initial test. |
8305 | 153 if (b - a <= 2*(2 * abs (u) * eps + tolx)) |
154 x = u; fval = fu; | |
155 info = 1; | |
156 break; | |
157 endif | |
158 if (abs (fa) <= 1e3*abs (fb) && abs (fb) <= 1e3*abs (fa)) | |
8507 | 159 ## Secant step. |
8305 | 160 c = u - (a - b) / (fa - fb) * fu; |
161 else | |
8507 | 162 ## Bisection step. |
8305 | 163 c = 0.5*(a + b); |
164 endif | |
165 d = u; fd = fu; | |
166 itype = 5; | |
167 case {2, 3} | |
168 l = length (unique ([fa, fb, fd, fe])); | |
169 if (l == 4) | |
8507 | 170 ## Inverse cubic interpolation. |
8305 | 171 q11 = (d - e) * fd / (fe - fd); |
172 q21 = (b - d) * fb / (fd - fb); | |
173 q31 = (a - b) * fa / (fb - fa); | |
174 d21 = (b - d) * fd / (fd - fb); | |
175 d31 = (a - b) * fb / (fb - fa); | |
176 q22 = (d21 - q11) * fb / (fe - fb); | |
177 q32 = (d31 - q21) * fa / (fd - fa); | |
178 d32 = (d31 - q21) * fd / (fd - fa); | |
179 q33 = (d32 - q22) * fa / (fe - fa); | |
180 c = a + q31 + q32 + q33; | |
181 endif | |
182 if (l < 4 || sign (c - a) * sign (c - b) > 0) | |
8507 | 183 ## Quadratic interpolation + newton. |
8305 | 184 a0 = fa; |
185 a1 = (fb - fa)/(b - a); | |
186 a2 = ((fd - fb)/(d - b) - a1) / (d - a); | |
8507 | 187 ## Modification 1: this is simpler and does not seem to be worse. |
8305 | 188 c = a - a0/a1; |
189 if (a2 != 0) | |
190 c = a - a0/a1; | |
191 for i = 1:itype | |
192 pc = a0 + (a1 + a2*(c - b))*(c - a); | |
193 pdc = a1 + a2*(2*c - a - b); | |
194 if (pdc == 0) | |
195 c = a - a0/a1; | |
196 break; | |
197 endif | |
198 c -= pc/pdc; | |
199 endfor | |
200 endif | |
201 endif | |
202 itype += 1; | |
203 case 4 | |
8507 | 204 ## Double secant step. |
8305 | 205 c = u - 2*(b - a)/(fb - fa)*fu; |
8507 | 206 ## Bisect if too far. |
8305 | 207 if (abs (c - u) > 0.5*(b - a)) |
208 c = 0.5 * (b + a); | |
209 endif | |
210 itype = 5; | |
211 case 5 | |
8507 | 212 ## Bisection step. |
8305 | 213 c = 0.5 * (b + a); |
214 itype = 2; | |
215 endswitch | |
216 | |
8507 | 217 ## Don't let c come too close to a or b. |
8305 | 218 delta = 2*0.7*(2 * abs (u) * eps + tolx); |
219 if ((b - a) <= 2*delta) | |
220 c = (a + b)/2; | |
221 else | |
222 c = max (a + delta, min (b - delta, c)); | |
223 endif | |
224 | |
8507 | 225 ## Calculate new point. |
8305 | 226 x = c; |
227 fval = fc = fun (c); | |
228 niter ++; nfev ++; | |
229 | |
8507 | 230 ## Modification 2: skip inverse cubic interpolation if |
231 ## nonmonotonicity is detected. | |
8305 | 232 if (sign (fc - fa) * sign (fc - fb) >= 0) |
8507 | 233 ## The new point broke monotonicity. |
234 ## Disable inverse cubic. | |
8305 | 235 fe = fc; |
236 else | |
237 e = d; fe = fd; | |
238 endif | |
239 | |
8507 | 240 ## Bracketing. |
8305 | 241 if (sign (fa) * sign (fc) < 0) |
242 d = b; fd = fb; | |
243 b = c; fb = fc; | |
244 elseif (sign (fb) * sign (fc) < 0) | |
245 d = a; fd = fa; | |
246 a = c; fa = fc; | |
247 elseif (fc == 0) | |
248 a = b = c; fa = fb = fc; | |
249 info = 1; | |
250 break; | |
251 else | |
8507 | 252 ## 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
|
253 error ("fzero:bracket", "fzero: zero point is not bracketed"); |
8305 | 254 endif |
255 | |
8507 | 256 ## If there's an output function, use it now. |
8305 | 257 if (outfcn) |
258 optv.funccount = niter + 2; | |
259 optv.fval = fval; | |
260 optv.iteration = niter; | |
261 if (outfcn (x, optv, "iter")) | |
262 info = -1; | |
263 break; | |
264 endif | |
265 endif | |
266 | |
267 if (abs (fa) < abs (fb)) | |
268 u = a; fu = fa; | |
269 else | |
270 u = b; fu = fb; | |
271 endif | |
272 if (b - a <= 2*(2 * abs (u) * eps + tolx)) | |
273 info = 1; | |
274 break; | |
275 endif | |
276 | |
8507 | 277 ## Skip bisection step if successful reduction. |
8305 | 278 if (itype == 5 && (b - a) <= mba) |
279 itype = 2; | |
280 endif | |
281 if (itype == 2) | |
282 mba = mu * (b - a); | |
283 endif | |
284 endwhile | |
285 | |
286 output.iterations = niter; | |
287 output.funcCount = niter + 2; | |
288 output.bracket = [a, b]; | |
289 output.bracketf = [fa, fb]; | |
290 | |
291 endfunction | |
292 | |
8507 | 293 ## 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
|
294 ## bad results. |
8305 | 295 function fx = guarded_eval (fun, x) |
296 fx = fun (x); | |
297 fx = fx(1); | |
298 if (! isreal (fx)) | |
8468
866492035ecf
fsolve.m, fzero.m: undo part of previous change
John W. Eaton <jwe@octave.org>
parents:
8467
diff
changeset
|
299 error ("fzero:notreal", "fzero: non-real value encountered"); |
8305 | 300 elseif (isnan (fx)) |
8468
866492035ecf
fsolve.m, fzero.m: undo part of previous change
John W. Eaton <jwe@octave.org>
parents:
8467
diff
changeset
|
301 error ("fzero:isnan", "fzero: NaN value encountered"); |
8305 | 302 endif |
303 endfunction | |
304 | |
305 %!assert(fzero(@cos, [0, 3]), pi/2, 10*eps) | |
306 %!assert(fzero(@(x) x^(1/3) - 1e-8, [0,1]), 1e-24, 1e-22*eps) |