|
|
| Don't ask to ask, just ask | |
| PerlMonks |
Comment on |
| ( #3333=superdoc: print w/ replies, xml ) | Need Help?? |
|
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, =] In reply to Re^2: RFC: Fuzzy Clustering with Perl
by BUU
|
|