How can I read 1 dim data from excel into 3 dim data in ILOG CPLEX?
I can already read 3 dim data from excel into ILOG by using the workaround with a 2 dim array.
But how can I read Excel data like 3;4;5;6;7 into 3 dim ILOG format like
x = #[
1: #[
1: [3]
2: [4]
3: [5]
4: [6]
5: [7]
]#
]#;