package owl

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Parameters

Signature

include sig ... end
module Uniform : sig ... end
module Gaussian : sig ... end
module Exponential : sig ... end
module Poisson : sig ... end
module Gamma : sig ... end
module Beta : sig ... end
module Chi2 : sig ... end
module F : sig ... end
module Cauchy : sig ... end
module Lomax : sig ... end
module Weibull : sig ... end
module Laplace : sig ... end
module Gumbel1 : sig ... end
module Gumbel2 : sig ... end
module Logistic : sig ... end
module Lognormal : sig ... end
module Rayleigh : sig ... end
type dist = Owl_distribution.Make(A).dist =
  1. | Uniform of Uniform.t
  2. | Gaussian of Gaussian.t
  3. | Exponential of Exponential.t
  4. | Gamma of Gamma.t
  5. | Beta of Beta.t
  6. | Chi2 of Chi2.t
  7. | F of F.t
  8. | Cauchy of Cauchy.t
  9. | Lomax of Lomax.t
  10. | Weibull of Weibull.t
  11. | Laplace of Laplace.t
  12. | Gumbel1 of Gumbel1.t
  13. | Gumbel2 of Gumbel2.t
  14. | Logistic of Logistic.t
  15. | Lognormal of Lognormal.t
  16. | Rayleigh of Rayleigh.t
val sample : dist -> int -> A.arr
val prob : dist -> A.arr -> A.arr
val log_prob : dist -> A.arr -> A.arr
val cdf : dist -> A.arr -> A.arr
val logcdf : dist -> A.arr -> A.arr
module Lazy : sig ... end