Class: Array
- Inherits:
-
Object
- Object
- Array
- Defined in:
- lib/twss-classifier/naive-bayes.rb
Instance Method Summary collapse
Instance Method Details
#product ⇒ Object
8 9 10 |
# File 'lib/twss-classifier/naive-bayes.rb', line 8 def product self.inject{ |s, t| s * t } end |
#sum ⇒ Object
4 5 6 |
# File 'lib/twss-classifier/naive-bayes.rb', line 4 def sum self.inject{ |s, t| s + t } end |