二次规划 Resources

Showing items tagged with "二次规划"

Application Background This code is based on the book "Practical Computer Simulation for Chemical Engineering," which includes MATLAB programming tutorials and calculations for various chemical processes such as distillation columns, reactors, control systems, differential equations, and algebraic equations. The book also provides examples of chemical process optimization. It is recommended to purchase the book and study it alongside this code for effective learning, as the code is specifically written to correspond with the book's examples. Key Technologies The code implements optimization algorithms including quadratic programming and least squares methods. It utilizes MATLAB's Optimization Toolbox to minimize objective functions, covering design optimization, operational optimization, and global optimization. The code also includes parameter estimation and model identification components, such as kinetic parameter estimation and heat transfer parameter calculation.

MATLAB 426 views Tagged

function [X,fval,exitflag,output,lambda] = quadprog(H,f,A,b,Aeq,beq,lb,ub,X0,options,varargin) % X = QUADPROG(H,f,A,b) solves quadratic programming: % min 0.5*x'*H*x + f'*x subject to: A*x <= b % x = quadprog(H,f,A,b,Aeq,beq) extends to equality constraints

MATLAB 212 views Tagged

QuadLagR: Solves convex quadratic programming with equality constraints using Lagrange method ActiveSet: Solves convex quadratic programming with inequality constraints using active set method TrackRoute: Solves convex quadratic programming with inequality constraints using path following method

MATLAB 311 views Tagged