Class: RandomVariable::Poisson
Class Method Summary collapse
- 
  
    
      .new(mean)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
create a new Poisson Random Variable with a mean of
mean. 
Methods inherited from Generic
Methods included from Sampleable
Constructor Details
This class inherits a constructor from RandomVariable::Generic
Class Method Details
.new(mean) ⇒ Object
create a new Poisson Random Variable with a mean of mean
      100 101 102  | 
    
      # File 'lib/distros.rb', line 100 def self.new(mean) intern_new(mean) end  |