SciPy - Advanced Optimization
What will be the output of this code?
from scipy.optimize import linprog c = [2, 3] A_eq = [[1, 1]] b_eq = [5] result = linprog(c, A_eq=A_eq, b_eq=b_eq, bounds=[(0, None), (0, None)]) print(result.x)
