AWallBuilder has asked for the wisdom of the Perl Monks concerning the following question:
Hi all, I am new to hash references so I am not too familiar with all of the related basics.
I have made a hash or arrays HoCl. For each Cluster_num there is a list of members. I want to find for each pair of members how many of the same clusters they belong to $overlap. The script is working as expected (before I added the line about 0). But i want the overlap value to be 0 as a default. How do I set the default value for overlap? Thank you
my $overlap = {}; foreach $Cluster_Num (keys %HoCl){ my @members=@{$HoCl{$Cluster_Num}}; my $count = scalar(@members); for (my $i=0;$i<$count;$i++){ for (my $j=$i+1;$j<$count;$j++) { $overlap -> {$members[$i]} -> {$members[$j]} = 0; $overlap -> {$members[$i]} -> {$members[$j]} ++; $overlap -> {$members[$j]} -> {$members[$i]} ++; } } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: how to set a value for a hash reference
by moritz (Cardinal) on Mar 14, 2012 at 12:57 UTC | |
by AWallBuilder (Beadle) on Mar 14, 2012 at 13:17 UTC | |
by moritz (Cardinal) on Mar 14, 2012 at 13:19 UTC | |
by AWallBuilder (Beadle) on Mar 14, 2012 at 13:34 UTC | |
by moritz (Cardinal) on Mar 14, 2012 at 14:53 UTC | |
|
Re: how to set a value for a hash reference
by Anonymous Monk on Mar 14, 2012 at 15:41 UTC |