What is the error here in the simplex algorithm in python?

前端 未结 0 1661
青春惊慌失措
青春惊慌失措 2021-01-14 19:52
import numpy as np
import math

A=np.array([[-2,1,1,0,0], [-1,2,0,1,0], [1,0,0,0,1]])  
b=np.array([2,7,3])
c=np.array([-1, -2, 0, 0, 0])
m,n = A.shape

N = A[0:m ,          


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题