in reply to matrix - creating total row/column
with this one.for my $to (sort keys %from_to_bytes){ printf "%10s", "$from_to_bytes{$to}"; }
Although as you can see there is some more work needed in the formatting. Hope this helps.my %total_col; for my $i (keys %from_to_bytes) { for my $j (keys %{ $from_to_bytes{$i} }) { $total_col{$j} += $from_to_bytes{$i}->{$j}; } } print " " x 11; for my $i (sort keys %total_col) { printf " %10s", "$total_col{$i}"; } print "\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: matrix - creating total row/column
by GertMT (Hermit) on Oct 15, 2009 at 21:45 UTC |