我在 Matlab 中有一个我定义的命令,它应该返回整数值:
x = intlinprog(f,intcon,A,b,Aeq,beq,lb,ub)
我不想对结果进行四舍五入。我希望这些价值观int
从一开始就存在。
这是我尝试过的:
x = int32([0 0 0 0 0 0 0 ])
x = intlinprog(f,intcon,A,b,Aeq,beq,lb,ub)
%// but this is not working, and not giving integer values.
知道如何强制x
成为int
价值矩阵而不是double
?