- or download this
foreach my $val (@values){
$val *= $df * 50 ;
}
print join("\t", @values), "\n";
- or download this
print join("\t", map { $_ * $df * 50 } @values), "\n";
- or download this
...
while (<FILE>){
print join("\t", map { $_ * $df * 50 } split /\t/), "\n";
}