正在加载图片...
Description linprog solves linear programming problems. x linprog(f,A,b)solves min f*x such that A*x <=b. x linprog(f,A,b,Aeg,beg)solves the problem above while additionally satisfying the equality constraints Aeq*x beq.Set A=[]and b=[]if no inequalities exist. x linprog(f,A,b,Aeq,beg,lb,ub)defines a set of lower and upper bounds on the design variables,x,so that the solution is always in the range lb <=x <ub.Set Aeq=[]and beq=[]if no equalities exist.Description linprog solves linear programming problems. • x = linprog(f,A,b) solves min f'*x such that A*x <= b. • x = linprog(f,A,b,Aeq,beq) solves the problem above while additionally satisfying the equality constraints Aeq*x = beq. Set A=[] and b=[] if no inequalities exist. • x = linprog(f,A,b,Aeq,beq,lb,ub) defines a set of lower and upper bounds on the design variables, x, so that the solution is always in the range lb <= x <= ub. Set Aeq=[] and beq=[] if no equalities exist
<<向上翻页向下翻页>>
©2008-现在 cucdc.com 高等教育资讯网 版权所有