in reply to Re^2: How to add column into array from delimited tab file
in thread How to add column into array from delimited tab file
the reason for array is so that I can calculate each value over the respective value in same array in a loop.for my $row (@aoa[1..$#aoa]) { @ID = $row->[0]; @data = $row->[1..$#aoa]; } print $OUT1 "$_\n" for @ID; print $OUT2 "$_\n" for @data;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: How to add column into array from delimited tab file
by NetWallah (Canon) on Feb 17, 2014 at 08:59 UTC |