package gsl

  1. Overview
  2. Docs

Quasi-Random Sequences

type qrng_type =
  1. | NIEDERREITER_2
  2. | SOBOL
type t
val make : qrng_type -> int -> t
val init : t -> unit
val get : t -> float array -> unit
val sample : t -> float array
val name : t -> string
val dimension : t -> int
val memcpy : src:t -> dst:t -> unit
val clone : t -> t