5.3多目标优化与决策的基本方法-Read.ppt

  1. 1、本文档共12页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
5.3多目标优化与决策的基本方法-Read.ppt

多目标优化与决策的基本方法 基于Matlab的一种现代方法 Elementary Method for Multiobjective Optimization Decision A Modern Approach in Matlab 单元讨论目标 Unit Object 教科书 多目标优化问题非劣解及约束法 目标规划法 扩展到工程领域与非线性优化 Matlab R14 SP1的Optimization Toolbox 详细讲解fgoalattain,大致对应目标规划法,但是扩展到非线性 多目标优化的数学描述 Multiobjective optimization model 多目标优化的非劣解集 Noninferior solution for the model 约束法 Constraint Method 目标规划法 Goal Attainment Method Matlab优化工具箱 Matlab Optimization Toolbox 优化工具箱提供了一般和大型的非线性优化函数,同时还提供了线性规划,二次规划,非线性最小二乘以及非线性方程求解的工具。 主要特性: 无约束非线性极小化问题 约束性线性极小化、极大极小、多目标优化,半无穷极小化问题。 二次规划和线性规划问题 非线性最小二乘和边界曲线拟合问题 非线性系统方程求解问题 约束线性最小二乘问题 大型问题的特殊算法 fgoalattain一般用法 Solve multiobjective goal attainment problem fgoalattain实例 线性系统输出反馈极点配置 Practical fgoalattain seeking K A = [ -0.5 0 0; 0 -2 10; 0 1 -2 ]; B = [ 1 0; -2 2; 0 1 ]; C = [ 1 0 0; 0 0 1 ]; %% % Suppose we wish to design an output feedback controller, x, to have % poles to the left of the location [-5, -3, -1] in the complex plane. % The controller must not have any gain element exceeding an absolute % value of 4. goal = [-5, -3, -1] %% % Set the weights equal to the goals to ensure same percentage % under- or over-attainment in the goals. weight = abs(goal) %% % Initialize output feedback controller x0 = [ -1 -1; -1 -1]; %% % Set upper and lower bounds on the controller lb = repmat(-4,size(x0)) ub = repmat(4,size(x0)) %% % Create a vector-valued function eigfun that returns the eigenvalues of the % closed loop system. This function requires additional parameters (namely, % the matrices A, B, and C); the most convenient way to pass these is through % an anonymous function: eigfun = @(x) sort(eig(A+B*x*C)) %% % To begin the optimization we call FGOALATTAIN: [x,fval,attainfactor,exitflag,output,lambda] = ... fgoalattain(eigfun,x0,goal,weight,[],[],[],[],lb,ub,[],options); %% % The attainment factor indicates the level of goal achievement. % A negative attainment factor indicates over-achievement, positive % indi

文档评论(0)

shiyouguizi + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档