- 1、本文档共41页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
[工学]第二讲 无约束最优化
第二讲 无约束非线性规划 fminbnd fminunc fminsearch 函数 2.1 单变量最小化 1、基本数学原理 一维搜索问题,某些情况直接用于求解实际问题,也是进行多变量最优化的基础. minf(x) x1xx2 该问题的搜索过程用下式表达: Xk+1=xk+α*d Xk 为本次迭代的值; α 为搜索方向上的步长参数; d 搜索方向 2、求解方法 拟牛顿法 3、MATLAB求解函数fminbnd 单变量函数求最小值的标准形式为 sub.to 有关参数说明 若参数exitflag0,表示函数收敛于x, 若exitflag=0,表示超过函数估计值或迭代的最大数字, exitflag0表示函数不收敛于x; 若参数output的字段中: iterations 表示迭代次数, funccount 表示函数赋值次数, algorithm 表示所使用的算法, message 退出消息 The function to be minimized. fun takes a scalar x and returns a scalar value f of the objective function evaluated at x. You can specify fun to be an inline object. For example, x = fminbnd(inline(sin(x*x)),x0) Alternatively, fun can be a string containing the name of a function(an M-file, a built-in function, or a MEX-file). If fun=myfun then the M-file function myfun.m would have the form function f = myfun(x) f = ... % Compute function value at x options Optimization parameter options. You can set or change the values of these parameters using the optimset function. fminbnd uses these options structure fields: ?Display – Level of display. off displays no output; iter‘ displays output at each iteration; final displays just the final output. ?MaxFunEvals – Maximum number of function evaluations allowed. ?MaxIter – Maximum number of iterations allowed. ?TolX – Termination tolerance on x. exitflag Describes the exit condition: ? 0 indicates that the function converged to a solution x. ?0 indicates that the maximum number of function evaluations or iterations was reached. ? 0 indicates that the function did not converge to a solution. output A structure whose fields contain information about the optimization: ?output.iterations – The number of iterations taken. ?output.algorithm – The algorithm used. ?output.funcCount – The number of function evaluations Examples A minimum of sin(x) occurs at x = fminbnd(sin,0,2*pi) x = 4.7124 The value of the function
您可能关注的文档
- [工学]第4单元Excel2003的使用技巧.ppt
- [工学]第4章 数字通信系统概述 82.ppt
- [工学]第4章 基本汇编语言.ppt
- [工学]第4章 C55x处理器的软件设计.ppt
- [工学]第4章 语法制导的翻译.ppt
- [工学]第4章 地基变形计算.ppt
- [工学]第4章 文件服务器的配置与管理.ppt
- [工学]第4章 系统结构模型.ppt
- [工学]第4章 表面粗糙度及检测.ppt
- [工学]第4章-带电粒子测量方法2012.ppt
- DB12 046.89-2011 产品单位产量综合电耗计算方法及限额 第89部分:手机 .docx
- DB12 046.88-2011 产品单位产量综合电耗计算方法及限额 第88部分:晶振 .docx
- DB12T 419-2010 无公害农产品 核桃栽培管理技术规范 .docx
- DB12T 417-2010 沙化和荒漠化监测技术规程.docx
- DB12T 449-2011 民用建筑四防门通用技术条件.docx
- DB12 046.100-2011 产品单位产量综合能耗计算方法及限额 第100部分: 果汁饮料 .docx
- DB12T 427-2010 葱姜蒜中205种农药多残留测定方法-GCMS法.docx
- DB12T 421-2010 有机农产品 甘薯有机栽培技术规范.docx
- DB12T 426-2010 蔬菜水果中205种农药多残留测定方法-GCMS法 .docx
- 《老年人身体康复》精品课件——项目6 中国传统康复技术.pptx
最近下载
- Newzoo:2024年全球游戏市场报告(英文版).pdf VIP
- 婚内财产归各自所有协议.docx VIP
- 工程质量检测投标方案.docx
- 23G518-1 门式刚架轻型房屋钢结构(无吊车).docx VIP
- 初中语文部编版九年级下册古诗文默写填空练习(附参考答案).pdf VIP
- 2024年四川省广元市中考英语试题卷(含答案解析).docx
- 2024年中国游戏产业趋势及潜力分析报告.pdf VIP
- 沙利文 -重组III型三螺旋胶原蛋白白皮书_20241010155702.pdf
- 初中物理2025届中考物理定义填空练习(共149条)(附参考答案).doc
- 标准图集-13S201室外消火栓及消防水鹤安装.pdf
文档评论(0)