SparceMatrix
Technical User
The following program is taken from this post:
The output is
=============
$#foo = 1
$i = 0, $j = 0, e11
$i = 0, $j = 1, e12
$i = 1, $j = 0, e21
$i = 1, $j = 1, e22
Using "for" to loop through a multidimensional array is pretty transparent, but what should be even more transparent is to apply the "foreach" loop:
This does not work, but I have experimented several ways to suggest to me that $fooArray does exist in some way as an array.
How do you generalize the common PERL language of arrays to manipulate multidimensional arrays? What about in this particular case using "foreach"?
Code:
@foo = (
['e11', 'e12' ],
['e21', 'e22' ],
);
print "\$#foo = $#foo\n";
for($i=0; $i<=$#foo; $i++)
{
for($j=0; $j<2; $j++)
{
print "\$i = $i, \$j = $j, $foo[$i][$j]\n";
}
}
The output is
=============
$#foo = 1
$i = 0, $j = 0, e11
$i = 0, $j = 1, e12
$i = 1, $j = 0, e21
$i = 1, $j = 1, e22
Using "for" to loop through a multidimensional array is pretty transparent, but what should be even more transparent is to apply the "foreach" loop:
Code:
@foo = (
['e11', 'e12' ],
['e21', 'e22' ],
);
print "\$#foo = $#foo\n";
foreach $fooArray (@foo)
{ $i=0; $i++;
foreach($fooCell (@fooArray)
{ $j=0; $j++;
print "\$i = $i, \$j = $j, $foo[$i][$j]\n";
}
}
This does not work, but I have experimented several ways to suggest to me that $fooArray does exist in some way as an array.
How do you generalize the common PERL language of arrays to manipulate multidimensional arrays? What about in this particular case using "foreach"?