Help for this page

Select Code to Download


  1. or download this
    my $element = $matrix[0]->[4]; 
    # or by shorthand:
    my $element2 = $matrix[0][4];
    
  2. or download this
    $matrix[6]->[3] = 8; # or the same shorthand as above
    
  3. or download this
    my @row6 = @{ $matrix[6] }; # to a list
    my $listRef6 = $matrix[6]; # to a listreference
    
  4. or download this
    foreach my $row (@matrix) {
      print join ("\t", @$row);
    }