package owl

  1. Overview
  2. Docs
OCaml Scientific and Engineering Computing

Install

dune-project
 Dependency

Authors

Maintainers

Sources

owl-0.7.0.tbz
sha256=cb9b596d7a2166630e385381f5dcb7cc6c2a4afebd32b2811db3e4b4fe008f3c
sha512=940c0953ee3fce453787e0820df42f4f3852413ba0a1af9d18af128d90a76bf9c93aaa3af42bd80be938b0b53ed0f546a1972ecc5fad7dd35247cea5e699b78f

doc/owl/Owl_stats_sampler/index.html

Module Owl_stats_samplerSource

Sourcetype 'a t = {
  1. samples : 'a array;
  2. accept : float;
}
Sourceval rejection : m:float -> proprvs:(unit -> float) -> proppdf:(float -> float) -> pdf:(float -> float) -> int -> float t
Sourceval ars : 'a option
Sourceval arms : 'a option
Sourceval metropolis : ?burnin:int -> ?thin:int -> initial:'a array -> proprvs:('a array -> 'a array) -> proppdf:('a array -> 'a array -> float) -> pdf:('a array -> float) -> int -> 'a array t
Sourceval gibbs : 'a option
Sourceval slice : 'a option
Sourceval adaptive_rejection : 'a option
Sourceval to_string : 'a t -> string
Sourceval pp_t : Format.formatter -> 'a t -> unit