in reply to Re: Assist in understanding of old code
in thread Assist in understanding old code
I don't really know what is going on in this code, I am working on it.my $ct=0; my @nxxult = (); my @Ultmnsort = (); my @indexUlt = (); for(my $rn=4;$rn<=32;$rn +=4) { for(my $bn=1;$bn<=$row[0];$bn++) { $nxxult[$bn]=$ldx[$bn][$rn]; } @indexUlt=sort{$nxxult[$a]<=>$nxxult[$b]} 0 ... $#nxxult; $Ultmnsort[$ct]=$indexUlt[0]; $Ultmxsort[$ct]=$indexUlt[$#indexUlt]; $ct++; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Assist in understanding of old code
by Mugatu (Monk) on Feb 28, 2005 at 23:49 UTC |