package owl-base

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

Source file owl_base_stats_dist_gumbel2.ml

1
2
3
4
5
6
7
8
9
# 1 "src/base/stats/owl_base_stats_dist_gumbel2.ml"
(*
 * OWL - OCaml Scientific and Engineering Computing
 * Copyright (c) 2016-2020 Liang Wang <liang.wang@cl.cam.ac.uk>
 *)

let gumbel2_rvs ~a ~b =
  let x = Random.float 1. in
  (-.b /. log x) ** (1. /. a)
OCaml

Innovation. Community. Security.