IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 125


Ignore:
Timestamp:
Oct 28, 2003, 5:54:33 PM (23 years ago)
Author:
eugene
Message:

corrected an error: sort was sorting *alphabetically* not
numerically!!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/perl/src/getfringe

    r70 r125  
    8181
    8282# calculate fringe & sky medians
    83 @fringe = sort @fringe;
     83@fringe = sort {$a <=> $b} @fringe;
    8484$fringe = $fringe[int(0.5*$N)];
    8585@sky = sort @sky;
     
    117117    exit 0;
    118118}
    119 
    120 
Note: See TracChangeset for help on using the changeset viewer.