Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^2: RFC: Fuzzy Clustering with Perl

by BUU (Prior)
on Nov 03, 2006 at 20:52 UTC ( [id://582163]=note: print w/replies, xml ) Need Help??


in reply to Re: RFC: Fuzzy Clustering with Perl
in thread RFC: Fuzzy Clustering with Perl

Just a nit:
for my $i ( 0 .. $number_of_clusters-1 ) { ... }

Should be:
for my $i ( 0 .. $#number_of_clusters ) { ... }

Update: Hrm, whups, I read that first line as "0..@number_of_clusters", apparently multiple times. It should not be "0 .. $#number_of_clusters" since @number_of_clusters doesn't exist. It might be more clearly written "1 .. $number_of_clusters" though, =]

Replies are listed 'Best First'.
Re^3: RFC: Fuzzy Clustering with Perl
by lin0 (Curate) on Nov 03, 2006 at 21:34 UTC

    Hi BUU,

    I think that the first option is the correct one because I want the loop to run for $number_of_clusters times. Because the loop starts in 0, it should go up to $number_of_clusters-1.

    Cheers!

    lin0

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (4)
As of 2024-04-25 17:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found