in reply to Re^3: Associated lists to matrices - and accumalted integers
in thread RESOLVED - Associated lists to matrices - and accumalted integers
Last question please.. do you have a good code snippet to put it in the matrix afterwoods please?list ---- HAT KNIFE 1 HAT KNIFE 7 BALL KNIFE 3 CAT CLOTH 1 DOG CLOTH 2 code ---- my %matrix; while (<>) { my ($id1, $id2, $int) = split; $matrix{$id1}{$id2} += $int; } foreach $key1 (keys %matrix) { foreach $key2 (keys %{%matrix->{$key1}}) { print "\$matrix{$key1}{$key2} = $matrix{$key1}{$key2} +"; } print"\n"; + } output ------ $matrix{CAT}{CLOTH} = 1 $matrix{DOG}{CLOTH} = 2 $matrix{HAT}{KNIFE} = 8 $matrix{BALL}{KNIFE} = 3
CLOTH KNIFE BALL 0 3 HAT 0 8 DOG 1 0 CAT 1 2
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Associated lists to matrices - and accumalted integers
by JavaFan (Canon) on Nov 06, 2009 at 16:21 UTC |