简体   繁体   中英

Python : how to fix this error with _ub in scipy. optimize syntax error

在此处输入图片说明

I don't know how to deal with this

Your call to linprog should use (...) instead of [...] . Specifically, change to:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM