File: gsl.rb

package info (click to toggle)
ruby-distribution 0.7.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 624 kB
  • ctags: 379
  • sloc: ruby: 4,283; makefile: 7
file content (11 lines) | stat: -rw-r--r-- 219 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
module Distribution
  module BivariateNormal
    module GSL_
      class <<self
        def pdf(x,y,rho,s1=1.0,s2=1.0)
          GSL::Ran::bivariate_gaussian_pdf(x, y, s1,s2,rho)
        end
      end
    end
  end
end