in reply to Re: Need help with complex tied data structure
in thread Need help with complex tied data structure
Does that make more sense?foreach $sample_id (@{$groups[$gid]}) { $data[$gid]->{$sample_id} = []; # assign anon array ref to ti +ed hash foreach $element_num ( 0 .. $element_count ) { $element = []; # ... do a bunch of stuff here ... $data[$gid]->{$sample_id}->[$element_num] = $element; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Need help with complex tied data structure
by perrin (Chancellor) on Nov 20, 2003 at 23:19 UTC |