Help for this page

Select Code to Download


  1. or download this
    my @matrix=([qw(1 2 4 4)],[qw(5 2 0 8)],[qw(9 10 11 12)],);
    
    ...
        $t[$i][$j] = $matrix[$j][$i];
      }
    }
    
  2. or download this
    $VAR1 = [
              [ 1, 5, 9 ],
    ...
              [ 4 ],
              [ 4, 8, 12 ],
            ]