Hi everyone,
I'm new at Gurobi (and Python) and I'm trying to figure out how to create a matrix of decision variables in a Gurobi optimization model.
I know that the command to add a new variable is, for example,
x = m.addVar(vtype=GRB.BINARY, name="x")
What is the command or how I can create a "matrix" of decision variables x?