求解多目标优化matlab书籍推荐,多目标优化 MATLAB.ppt

本文介绍了一种基于MATLAB的现代多目标优化方法,重点讨论了非劣解、约束法和目标规划法等内容,并通过实例演示了如何使用fgoalattain函数解决线性系统输出反馈极点配置问题。
摘要由CSDN通过智能技术生成

多目标优化 MATLAB

多目标优化与决策的基本方法基于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 % ind

matlab最优化程序包括:无约束一维极值问题、进退法、黄金分割法、斐波那契法、牛顿法基本牛顿法、全局牛顿法、割线法、抛物线法、三次插值法、可接受搜索法、Goidstein法、Wolfe Powell法、单纯形搜索法、Powell法、最速下降法、共轭梯度法、牛顿法、修正牛顿法、拟牛顿法、信赖域法、显式最速下降法、Rosen梯度投影法、罚函数法、外点罚函数法、內点罚函数法、混合罚函数法、乘子法、G-N法、修正G-N法、L-M法、线性规划、单纯形法、修正单纯形法、大M法、变量有界单纯形法、整数规划、割平面法、分支定界法、0-1规划、二次规划、拉格朗曰法、起作用集算法、路径跟踪法、粒子群优化算法、基本粒子群算法、带压缩因子的粒子群算法、权重改进的粒子群算法、线性递减权重法、自适应权重法、随机权重法、变学习因子的粒子群算法、同步变化的学习因子、异步变化的学习因子、二阶粒子群算法、二阶振荡粒子群算法 (matlab optimization process includes Non-binding one-dimensional extremum problems Advance and retreat method Golden Section Fibonacci method of basic Newton s method Newton s method Newton s Law of the global secant method parabola method acceptable to the three interpolation search method Goidstein France Wolfe.Powell France Simplex search method Powell steepest descent method Conjugate gradient method Newton s method Newton s method to amend Quasi-Newton Method trust region method explicitly steepest descent method, Rosen gradient projection method Penalty function method outside the penalty function method within the penalty function method Mixed penalty function multiplier method G-N was amended in G-N method L-M method Of linear programming simplex method, revised simplex method Big M method variables bounded simplex method, Cutting Plane Method integer programming branch and bound method 0-1 programming quadratic programming )
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值