IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 5, 2008, 4:24:14 PM (18 years ago)
Author:
Paul Price
Message:

Suppress error: Use of uninitialized value in multiplication (*) at PS/IPP/Metadata/Stats.pm line 119.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/PS-IPP-Config/lib/PS/IPP/Metadata/Stats.pm

    r17801 r18931  
    11# Copyright (c) 2006  Paul Price, Joshua Hoblitt
    22#
    3 # $Id: Stats.pm,v 1.31 2008-05-24 03:00:14 price Exp $
     3# $Id: Stats.pm,v 1.32 2008-08-06 02:24:14 price Exp $
    44
    55package PS::IPP::Metadata::Stats;
     
    117117                my $rawMean = $stats->mean();
    118118                my $rawStdev = $stats->standard_deviation();
    119                 my $rawLimit = 3.0*$rawStdev;
    120119
    121120                # clip, if we can
    122121                if (scalar @$data > 8) {
     122                    my $rawLimit = 3.0*$rawStdev;
    123123                    my @clipdata = ();
    124124                    foreach my $value (@$data){
Note: See TracChangeset for help on using the changeset viewer.