Module: Distribution::BivariateNormal::GSL_
- Defined in:
- lib/distribution/bivariatenormal/gsl.rb
Class Method Summary collapse
Class Method Details
.pdf(x, y, rho, s1 = 1.0, s2 = 1.0) ⇒ Object
5 6 7 |
# File 'lib/distribution/bivariatenormal/gsl.rb', line 5 def pdf(x, y, rho, s1 = 1.0, s2 = 1.0) GSL::Ran.bivariate_gaussian_pdf(x, y, s1, s2, rho) end |