Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Use of uninitialized value in addition

by kiruthika.bkite (Scribe)
on Mar 26, 2010 at 04:12 UTC ( [id://831023]=note: print w/replies, xml ) Need Help??


in reply to Use of uninitialized value in addition

Before performing addition operation ,check whether that array index is having value or not using define function.

Your code,
for my $valNum (0 .. $total){ $mean += $value[$valNum]; }
Change the loop like the following,
for my $valNum (0 .. $total-1){ if(defined($value[$valNum])) { $mean += $value[$valNum]; } }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://831023]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (3)
As of 2024-04-19 22:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found