当前位置:高等教育资讯网  >  中国高校课件下载中心  >  大学文库  >  浏览文档

《数字信号处理》教学参考资料(Numerical Recipes in C,The Art of Scientific Computing Second Edition)Chapter 10.2 Minimization or Maximization of Functions 10.2 Parabolic Interpolation and Brent’s Method in One Dimension

资源类别:文库,文档格式:PDF,文档页数:4,文件大小:48.42KB,团购合买
点击下载完整版文档(PDF)

402 Chapter 10.Minimization or Maximization of Functions x0=ax; At any given time we will keep track of four x3=cx; points,xO,x1,x2,x3. if (fabs(cx-bx)>fabs(bx-ax)){ Make xo to x1 the smaller segment, x1=bx; x2=bx+C*(cx-bx); and fill in the new point to be tried. else x2=bx; x1=bx-C*(bx-ax); f1=(*f)(x1); The initial function evaluations.Note that f2=(*f)(x2): we never need to evaluate the function while (fabs(x3-x0)>tol*(fabs(x1)+fabs(x2))){ at the original endpoints. 1f(f2<f1){ One possible outcome, SHFT3(x0,x1,x2,R*x1+C*x3) its housekeeping, SHFT2(f1,f2,(*f)(x2)) and a new function evaluation. else The other outcome, SHFT3(x3,x2,x1,R*x2+C*x0) SHFT2(f2,f1,(*f)(x1)) and its new function evaluation. Cam ICAL Back to see if we are done. if(f1<f2)[ We are done.Output the best of the two *xmin-=x1; current values. return f1; else University RECIPES I *xmin=x2; return f2; Americ computer one paper Press. ART Programs IENTIFIC 10.2 Parabolic Interpolation and Brent's Method 6 in One Dimension We already tipped our hand about the desirability of parabolic interpolation in the previous section's mnbrak routine,but it is now time to be more explicit.A golden section search is designed to handle,in effect,the worst possible case of Numerica 10.621 function minimization,with the uncooperative minimum hunted down and cornered 43106 like a scared rabbit.But why assume the worst?If the function is nicely parabolic near to the minimum-surely the generic case for sufficiently smooth functions- (outside Recipes then the parabola fitted through any three points ought to take us in a single leap 腿 to the minimum,or at least very near to it(see Figure 10.2.1).Since we want to North find an abscissa rather than an ordinate,the procedure is technically called inerse parabolic interpolation. The formula for the abscissa that is the minimum of a parabola through three points f(a),f(b),and f(c)is =6-号858二8-8-88- (10.2.1) as you can easily derive.This formula fails only if the three points are collinear, in which case the denominator is zero (minimum of the parabola is infinitely far

402 Chapter 10. Minimization or Maximization of Functions Permission is granted for internet users to make one paper copy for their own personal use. Further reproduction, or any copyin Copyright (C) 1988-1992 by Cambridge University Press. Programs Copyright (C) 1988-1992 by Numerical Recipes Software. Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-43108-5) g of machine￾readable files (including this one) to any server computer, is strictly prohibited. To order Numerical Recipes books or CDROMs, visit website http://www.nr.com or call 1-800-872-7423 (North America only), or send email to directcustserv@cambridge.org (outside North America). x0=ax; At any given time we will keep track of four x3=cx; points, x0,x1,x2,x3. if (fabs(cx-bx) > fabs(bx-ax)) { Make x0 to x1 the smaller segment, x1=bx; x2=bx+C*(cx-bx); and fill in the new point to be tried. } else { x2=bx; x1=bx-C*(bx-ax); } f1=(*f)(x1); The initial function evaluations. Note that we never need to evaluate the function at the original endpoints. f2=(*f)(x2); while (fabs(x3-x0) > tol*(fabs(x1)+fabs(x2))) { if (f2 < f1) { One possible outcome, SHFT3(x0,x1,x2,R*x1+C*x3) its housekeeping, SHFT2(f1,f2,(*f)(x2)) and a new function evaluation. } else { The other outcome, SHFT3(x3,x2,x1,R*x2+C*x0) SHFT2(f2,f1,(*f)(x1)) and its new function evaluation. } } Back to see if we are done. if (f1 < f2) { We are done. Output the best of the two *xmin=x1; current values. return f1; } else { *xmin=x2; return f2; } } 10.2 Parabolic Interpolation and Brent’s Method in One Dimension We already tipped our hand about the desirability of parabolic interpolation in the previous section’s mnbrak routine, but it is now time to be more explicit. A golden section search is designed to handle, in effect, the worst possible case of function minimization, with the uncooperative minimum hunted down and cornered like a scared rabbit. But why assume the worst? If the function is nicely parabolic near to the minimum — surely the generic case for sufficiently smooth functions — then the parabola fitted through any three points ought to take us in a single leap to the minimum, or at least very near to it (see Figure 10.2.1). Since we want to find an abscissa rather than an ordinate, the procedure is technically called inverse parabolic interpolation. The formula for the abscissa x that is the minimum of a parabola through three points f(a), f(b), and f(c) is x = b − 1 2 (b − a)2[f(b) − f(c)] − (b − c)2[f(b) − f(a)] (b − a)[f(b) − f(c)] − (b − c)[f(b) − f(a)] (10.2.1) as you can easily derive. This formula fails only if the three points are collinear, in which case the denominator is zero (minimum of the parabola is infinitely far

10.2 Parabolic Interpolation and Brent's Method 403 ------parabola through①②③ 。。。。。:。。。。。et parabola through①②④ .com or call (including this one) 19881992 5 111800-672 Figure 10.2.1.Convergence to aminimum by inverse parabolic interpolation.A parabola(dashed line)is server from NUMERICAL RECIPES IN C: drawn through the three original points 1,2,3 on the given function (solid line).The function is evaluated (Nort at the parabola's minimum,4,which replaces point 3.A new parabola (dotted line)is drawn through points 1,4,2.The minimum of this parabola is at 5,which is close to the minimum of the function. America computer, away).Note,however,that(10.2.1)is as happy jumping to a parabolic maximum as to a minimum.No minimization scheme that depends solely on(10.2.1)is likely to succeed in practice. The exacting task is to invent a scheme that relies on a sure-but-slow technique, OF SCIENTIFIC like golden section search,when the function is not cooperative,but that switches over to (10.2.1)when the function allows.The task is nontrivial for several reasons,including these:(i)The housekeeping needed to avoid unnecessary function evaluations in switching between the two methods can be complicated.(ii)Careful attention must be given to the "endgame,"where the function is being evaluated very near to the roundofflimit of equation(10.1.2).(iii)The scheme for detecting a cooperative versus noncooperative function must be very robust. Brent's method [1]is up to the task in all particulars.At any particular stage, it is keeping track of six function points (not necessarily all distinct),a,b,u,v, Fuurggoglrion Numerical Recipes 10-521 4310 w and z.defined as follows:the minimum is bracketed between a and b:z is the point with the very least function value found so far(or the most recent one in (outside g case of a tie);w is the point with the second least function value;v is the previous value of w:u is the point at which the function was evaluated most recently.Also North Software. appearing in the algorithm is the point xm,the midpoint between a and b;however, the function is not evaluated there. You can read the code below to understand the method's logical organization. Mention of a few general principles here may,however,be helpful:Parabolic interpolation is attempted,fitting through the points v,and w.To be acceptable, the parabolic step must (i)fall within the bounding interval (a,b),and(ii)imply a movement from the best current value that is less than half the movement of the step before last.This second criterion insures that the parabolic steps are actually converging to something,rather than,say,bouncing around in some nonconvergent limit cycle.In the worst possible case,where the parabolic steps are acceptable but

10.2 Parabolic Interpolation and Brent’s Method 403 Permission is granted for internet users to make one paper copy for their own personal use. Further reproduction, or any copyin Copyright (C) 1988-1992 by Cambridge University Press. Programs Copyright (C) 1988-1992 by Numerical Recipes Software. Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-43108-5) g of machine￾readable files (including this one) to any server computer, is strictly prohibited. To order Numerical Recipes books or CDROMs, visit website http://www.nr.com or call 1-800-872-7423 (North America only), or send email to directcustserv@cambridge.org (outside North America). 1 4 2 3 parabola through 1 2 3 parabola through 1 2 4 5 Figure 10.2.1. Convergence to a minimum by inverse parabolic interpolation. A parabola (dashed line) is drawn through the three original points 1,2,3 on the given function (solid line). The function is evaluated at the parabola’s minimum, 4, which replaces point 3. A new parabola (dotted line) is drawn through points 1,4,2. The minimum of this parabola is at 5, which is close to the minimum of the function. away). Note, however, that (10.2.1) is as happy jumping to a parabolic maximum as to a minimum. No minimization scheme that depends solely on (10.2.1) is likely to succeed in practice. The exacting task is to invent a scheme that relies on a sure-but-slow technique, like golden section search, when the function is not cooperative, but that switches over to (10.2.1) when the function allows. The task is nontrivial for several reasons, including these: (i) The housekeeping needed to avoid unnecessary function evaluations in switching between the two methods can be complicated. (ii) Careful attention must be given to the “endgame,” where the function is being evaluated very near to the roundoff limit of equation (10.1.2). (iii) The scheme for detecting a cooperative versus noncooperative function must be very robust. Brent’s method [1] is up to the task in all particulars. At any particular stage, it is keeping track of six function points (not necessarily all distinct), a, b, u, v, w and x, defined as follows: the minimum is bracketed between a and b; x is the point with the very least function value found so far (or the most recent one in case of a tie); w is the point with the second least function value; v is the previous value of w; u is the point at which the function was evaluated most recently. Also appearing in the algorithm is the point xm, the midpoint between a and b; however, the function is not evaluated there. You can read the code below to understand the method’s logical organization. Mention of a few general principles here may, however, be helpful: Parabolic interpolation is attempted, fitting through the points x, v, and w. To be acceptable, the parabolic step must (i) fall within the bounding interval (a, b), and (ii) imply a movement from the best current value x that is less than half the movement of the step before last. This second criterion insures that the parabolic steps are actually converging to something, rather than, say, bouncing around in some nonconvergent limit cycle. In the worst possible case, where the parabolic steps are acceptable but

404 Chapter 10.Minimization or Maximization of Functions useless,the method will approximately alternate between parabolic steps and golden sections,converging in due course by virtue of the latter.The reason for comparing to the step before last seems essentially heuristic:Experience shows that it is better not to"punish"the algorithm for a single bad step if it can make it up on the next one. Another principle exemplified in the code is never to evaluate the function less than a distance tol from a point already evaluated (or from a known bracketing point).The reason is that,as we saw in equation (10.1.2),there is simply no information content in doing so:the function will differ from the value already evaluated only by an amount of order the roundofferror.Therefore in the code below you will find several tests and modifications of a potential new point,imposing this 8 restriction.This restriction also interacts subtly with the test for "doneness,"which the method takes into account. A typical ending configuration for Brent's method is that a and b are 2 x xx tol apart,with(the best abscissa)at the midpoint of a and b,and therefore fractionally accurate to±tol Indulge us a final reminder that tol should generally be no smaller than the 3IE square root of your machine's floating-point precision. 6 #include #include "nrutil.h" #define ITMAX 100 Americ computer, #define CGOLD 0.3819660 ART #define ZEPS 1.0e-10 Here ITMAX is the maximum allowed number of iterations:CGOLD is the golden ratio;ZEPS is 9 Programs a small number that protects against trying to achieve fractional accuracy for a minimum that happens to be exactly zero. #define SHFT(a,b,c,d)(a)=(b);(b)=(c);(c)=(d); float brent(float ax,float bx,float cx,float (*f)(float),float tol, float *xmin) to dir Given a function f,and given a bracketing triplet of abscissas ax,bx,cx (such that bx is between ax and cx.and f(bx)is less than both f(ax)and f(cx)).this routine isolates the minimum to a fractional precision of about tol using Brent's method.The abscissa of SCIENTIFIC COMPUTING(ISBN the minimum is returned as xmin,and the minimum function value is returned as brent,the 19891892 returned function value. int iter; 10-621 float a,b,d,etemp,fu,fv,fw,fx,p,q,r,tol1,tol2,u,v,w,x,xm; float e=0.0; This will be the distance moved on idge.org Fuurggoglrion Numerical Recipes -43108 the step before last. a=(ax cx ax cx); a and b must be in ascending order b=(ax>cx?ax:cx); but input abscissas need not be. x=w-v=bx; Initializations... (outside fw=fv=fx=(*f)(x); Software. for (iter=1;itertol1){ Construct a trial parabolic fit. r=(x-w)*(fx-fv); q=(x-v)*(fx-fw); p=(x-V)*q-(x-W)*r; q=2.0*(q-r); 1f(q>0.0)p=-P q=fabs(q);

404 Chapter 10. Minimization or Maximization of Functions Permission is granted for internet users to make one paper copy for their own personal use. Further reproduction, or any copyin Copyright (C) 1988-1992 by Cambridge University Press. Programs Copyright (C) 1988-1992 by Numerical Recipes Software. Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-43108-5) g of machine￾readable files (including this one) to any server computer, is strictly prohibited. To order Numerical Recipes books or CDROMs, visit website http://www.nr.com or call 1-800-872-7423 (North America only), or send email to directcustserv@cambridge.org (outside North America). useless, the method will approximately alternate between parabolic steps and golden sections, converging in due course by virtue of the latter. The reason for comparing to the step before last seems essentially heuristic: Experience shows that it is better not to “punish” the algorithm for a single bad step if it can make it up on the next one. Another principle exemplified in the code is never to evaluate the function less than a distance tol from a point already evaluated (or from a known bracketing point). The reason is that, as we saw in equation (10.1.2), there is simply no information content in doing so: the function will differ from the value already evaluated only by an amount of order the roundoff error. Therefore in the code below you will find several tests and modifications of a potential new point, imposing this restriction. This restriction also interacts subtly with the test for “doneness,” which the method takes into account. A typical ending configuration for Brent’s method is that a and b are 2×x×tol apart, with x (the best abscissa) at the midpoint of a and b, and therefore fractionally accurate to ±tol. Indulge us a final reminder that tol should generally be no smaller than the square root of your machine’s floating-point precision. #include #include "nrutil.h" #define ITMAX 100 #define CGOLD 0.3819660 #define ZEPS 1.0e-10 Here ITMAX is the maximum allowed number of iterations; CGOLD is the golden ratio; ZEPS is a small number that protects against trying to achieve fractional accuracy for a minimum that happens to be exactly zero. #define SHFT(a,b,c,d) (a)=(b);(b)=(c);(c)=(d); float brent(float ax, float bx, float cx, float (*f)(float), float tol, float *xmin) Given a function f, and given a bracketing triplet of abscissas ax, bx, cx (such that bx is between ax and cx, and f(bx) is less than both f(ax) and f(cx)), this routine isolates the minimum to a fractional precision of about tol using Brent’s method. The abscissa of the minimum is returned as xmin, and the minimum function value is returned as brent, the returned function value. { int iter; float a,b,d,etemp,fu,fv,fw,fx,p,q,r,tol1,tol2,u,v,w,x,xm; float e=0.0; This will be the distance moved on the step before last. a=(ax cx ? ax : cx); but input abscissas need not be. x=w=v=bx; Initializations... fw=fv=fx=(*f)(x); for (iter=1;iter tol1) { Construct a trial parabolic fit. r=(x-w)*(fx-fv); q=(x-v)*(fx-fw); p=(x-v)*q-(x-w)*r; q=2.0*(q-r); if (q > 0.0) p = -p; q=fabs(q);

10.3 One-Dimensional Search with First Derivatives 405 etemp=e; e=d; if (fabs(p)>=fabs(0.5*q*etemp)Il p =q*(b-x)) d=CGOLD*(e=(x >xm a-x b-x)); The above conditions determine the acceptability of the parabolic fit.Here we take the golden section step into the larger of the two segments. else d=p/q; Take the parabolic step. u=x+d; if (u-a tol2 II b-u tol2) d=SIGN(tol1,xm-x); 2 else d=CGOLD(e=(x >xm a-x b-x)); 83g u=(fabs(d)>=tol1 x+d x+SIGN(tol1,d)); granted for 19881992 fu=(*f)(u); This is the one function evaluation per iteration 1.800 if (fu x)a=x;else b=x; tion evaluation. SHFT(v,w,x,u) Housekeeping follows: from NUMERICAL RECIPESI SHFT(fv,fw,fx,fu) else if (u x)a=u;else b=u; if (fu <fw l v==x){ v=W; w=u; (North America 州bMe se to make one paper University Press. THE fvefw; ART fw=fu; else if (fu <fv l v =x Il v==){ v=u; fv=fu; ictly proh Programs 2 2 OF SCIENTIFIC Done with housekeeping.Back for another iteration. nrerror("Too many iterations in brent"); 来xmin=x: Never get here. return fx; 1920 COMPUTING(ISBN Numerical Recipes 10-621 CITED REFERENCES AND FURTHER READING: Brent.R.P.1973.Algorithms for Minimization without Derivatives(Englewood Cliffs.NJ:Prentice- 43108 Hall),Chapter 5.[1] Forsythe,G.E.,Malcolm,M.A.,and Moler,C.B.1977,Computer Methods for Mathematical Computations (Englewood Cliffs,NJ:Prentice-Hall),$8.2. (outside North Software. 10.3 One-Dimensional Search with First visit website machine Derivatives Here we want to accomplish precisely the same goal as in the previous section,namely to isolate a functional minimum that is bracketed by the triplet of abscissas (a,6,c),but utilizing an additional capability to compute the function's first derivative as well as its value

10.3 One-Dimensional Search with First Derivatives 405 Permission is granted for internet users to make one paper copy for their own personal use. Further reproduction, or any copyin Copyright (C) 1988-1992 by Cambridge University Press. Programs Copyright (C) 1988-1992 by Numerical Recipes Software. Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-43108-5) g of machine￾readable files (including this one) to any server computer, is strictly prohibited. To order Numerical Recipes books or CDROMs, visit website http://www.nr.com or call 1-800-872-7423 (North America only), or send email to directcustserv@cambridge.org (outside North America). etemp=e; e=d; if (fabs(p) >= fabs(0.5*q*etemp) || p = q*(b-x)) d=CGOLD*(e=(x >= xm ? a-x : b-x)); The above conditions determine the acceptability of the parabolic fit. Here we take the golden section step into the larger of the two segments. else { d=p/q; Take the parabolic step. u=x+d; if (u-a = xm ? a-x : b-x)); } u=(fabs(d) >= tol1 ? x+d : x+SIGN(tol1,d)); fu=(*f)(u); This is the one function evaluation per iteration. if (fu = x) a=x; else b=x; tion evaluation. SHFT(v,w,x,u) Housekeeping follows: SHFT(fv,fw,fx,fu) } else { if (u < x) a=u; else b=u; if (fu <= fw || w == x) { v=w; w=u; fv=fw; fw=fu; } else if (fu <= fv || v == x || v == w) { v=u; fv=fu; } } Done with housekeeping. Back for } another iteration. nrerror("Too many iterations in brent"); *xmin=x; Never get here. return fx; } CITED REFERENCES AND FURTHER READING: Brent, R.P. 1973, Algorithms for Minimization without Derivatives (Englewood Cliffs, NJ: Prentice￾Hall), Chapter 5. [1] Forsythe, G.E., Malcolm, M.A., and Moler, C.B. 1977, Computer Methods for Mathematical Computations (Englewood Cliffs, NJ: Prentice-Hall), §8.2. 10.3 One-Dimensional Search with First Derivatives Here we want to accomplish precisely the same goal as in the previous section, namely to isolate a functional minimum that is bracketed by the triplet of abscissas (a, b, c), but utilizing an additional capability to compute the function’s first derivative as well as its value

点击下载完整版文档(PDF)VIP每日下载上限内不扣除下载券和下载次数;
按次数下载不扣除下载券;
24小时内重复下载只扣除一次;
顺序:VIP每日次数-->可用次数-->下载券;
已到末页,全文结束
相关文档

关于我们|帮助中心|下载说明|相关软件|意见反馈|联系我们

Copyright © 2008-现在 cucdc.com 高等教育资讯网 版权所有