in reply to RFC: A Beginners Guide to Fuzzy Rules-Based Systems
Your explanation seems clear (well, I think it's clear, given that I don't know much about this area), but I'd make a tiny, almost unrelated change:
my $fis = new AI::FuzzyInference;We're trying really hard to discourage indirect object notation. That's better written as:
my $fis = AI::FuzzyInference->new;Indirect object notation can lead to annoying bugs. perlobj has a good discussion of the problems in the "Indirect Object Syntax" section.
Cheers,
Ovid
New address of my CGI Course.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: RFC: A Beginners Guide to Fuzzy Rules-Based Systems
by lin0 (Curate) on Oct 12, 2006 at 13:43 UTC | |
Re^2: RFC: A Beginners Guide to Fuzzy Rules-Based Systems
by halley (Prior) on Oct 12, 2006 at 17:32 UTC | |
by chromatic (Archbishop) on Oct 12, 2006 at 19:16 UTC |