Hello
I want to provide figure 1 from lena-dual-stripe. So, First i enable REM, by changing false to true, according:
static ns3::GlobalValue g_generateRem ("generateRem",
"if true, will generate a REM and then abort the simulation;"
"if false, will run the simulation normally (without generating any REM)",
ns3::BooleanValue (false),
ns3::MakeBooleanChecker ());
second i run the lena-dual-stripe.cc in terminal and it runs successfully, third by text file obtained as output i apply this script in gnuplot:
set view map;
set xlabel "X"
set ylabel "Y"
set cblabel "SINR (dB)"
unset key
plot "lena-dual-stripe.dat" using ($1):($2):(10*log10($4)) with image
at the end i get figure 2, But my purpose is getting figure 1.
How can resolve it?
How can get figure 1 exactly?
Thanks.