Sha256: c3bbba4563e33f52ef923c7c9eaadd45d331b5015a5eaedde3a5ddf1ce760c63
Contents?: true
Size: 402 Bytes
Versions: 6
Compression:
Stored size: 402 Bytes
Contents
module Distribution module Hypergeometric module GSL_ class << self def pdf(k, m, n, total) # :nodoc: GSL::Ran::hypergeometric_pdf(k, m, total-m, n) end # The GSL::Cdf function for hypergeometric # def cdf(k, m, n, total) # :nodoc: GSL::Cdf::hypergeometric_P(k, m, total-m, n) end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems