Originally posted by: NosaibaY
Hi,
I am working on assignment problem and I need to joint two arrays together. both arrays have same number of column with different number of rows. for example
A=[[1,2,3];[2,2,0]]
B=[[3,2,4];,[4,5,7],[3,2,6]]
I need to update A and make it A= [[1,2,3];
[2,2,0];
[3,2,4];
[4,5,7];
[3,2,6]]
then I need to run for loop considering number of A' rows. I need to update A different times and every time size of b is different
is it doable using CPLEX or do I have to another interface like python?
Thanks
#CPLEXOptimizers#DecisionOptimization