I have this basic loop that populates a 5*3 matrix . The loop is
for($i=0;$i<5;$i++)
{
for($j=0;$j<3;$j++)
{
$c[$i][$j]=$i+$j;
}
}
I can plot the rows by giving
$lineplot1 =new LinePlot($c[row_number]);
but am unable to plot the columns in the similar way.
I need to plot the array $c[][2] that is the second column . Can anyone please suggest how can I do that ? Do I need to use the image_graph library.
thanks