numpy解方程

Examplespython Solve the system of equations 3 * x0 + x1 = 9 and x0 + 2 * x1 = 8:ide >>> >>> a = np.array([[3,1], [1,2]]) >>> b = np.array([9,8]) >>> x = np.linalg.solve(a, b) >>> x array([ 2., 3.])
相關文章
相關標籤/搜索