GDXXRWExample11b : Reads a table from an MS Excel file and writes it to a GDX file
This program illustrates writing to an MS Excel file
using Execute_Unload and Execute statements
Files: GDXXRWExample11b.gms
$ontext
This program illustrates writing to an MS Excel file
using Execute_Unload and Execute statements
$offtext
set i /i1*i4/
j /j1*j4/
k /k1*k4/;
parameter v(i,j,k);
v(i,j,k)$(uniform(0,1) < 0.30) = uniform(0,1);
Execute_Unload "test2.gdx",I,J,K,V;
Execute 'GDXXRW.EXE test2.gdx par=V rng=a1';