Originally posted by: sandeepsinghchauhan
I have a set of ranges like
range A = 1..3;
range B = 1..5;
****************************************************************
X[1][1] will give data from 1..10;
X[1][2] will give data from 1..3;
X[1][3] will give data from 1..5;
X[2][1] will give data from 1..6;
X[2][2] will give data from 1..2;
X[2][3] will give data from 1..17;
*********************************************************************
my question is if i want to create a matrix "K" with the help of this ranges whose first element is A, second is B and Third as change with X. How can i create it?
float K[A][B][X[?][?]]
#DecisionOptimization#OPLusingCPLEXOptimizer