Matlab可以解多目標且0-1規劃嗎?

Matlab可以解多目標且0-1規劃嗎?高數王者2018-03-22 23:03:20

MATLAB可以0-1規劃問題的,具體參考

bintprog

Solve binary integer programming problems

Equation

Solves binary integer programming problems of the form

f, b, and beq are vectors, A and Aeq are matrices, and the solution x is required to be a binary integer vector—that is, its entries can only take on the values 0 or 1。

Syntax

x = bintprog(f)

x = bintprog(f,A,b)

x = bintprog(f,A,b,Aeq,beq)

x = bintprog(f,A,b,Aeq,beq,x0)

x = bintprog(f,A,b,Aeq,Beq,x0,options)

x = bintprog(problem)

[x,fval] = bintprog(。。。)

[x,fval,exitflag] = bintprog(。。。)

[x,fval,exitflag,output] = bintprog(。。。)

多目標可以等價為單目標計算。