in reply to How to get Matrix Size
Where did you learn to create a matrix? It should also discuss access
Modern Perl by chromatic a loose description of how experienced and effective Perl 5 programmers work....You can learn this too.my $rows = @myMatrix; my $cols = @{ $myMatrix[0] };
It is reviewed and recommended by Perl Tutorial Hub
|
|---|