Python:如何在scipy中使用_ub修复此错误。优化语法错误

时间:2017-10-04 18:02:47

标签: python scipy

enter image description here

我不知道如何处理这个

1 个答案:

答案 0 :(得分:1)

您对linprog的来电应使用(...)代替[...]。具体来说,改为:

my_result = linprog(c, A_ub=A, b_ub=b, bounds=[x1_bounds,x2_bounds,x3_bounds,x4_bounds])