Method: Distribution::LogNormal::GSL_.cdf
- Defined in:
- lib/distribution/lognormal/gsl.rb
.cdf(x, u, s) ⇒ Object
9 10 11 |
# File 'lib/distribution/lognormal/gsl.rb', line 9 def cdf(x, u, s) GSL::Cdf.lognormal_P(x.to_f, u.to_f, s.to_f) end |