Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions rand_distr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@
Implements a full suite of random number distributions sampling routines.

This crate is a super-set of the [rand::distributions] module, including support
for sampling from Beta, Cauchy, ChiSquared, Dirichlet, exponential, Fisher F,
Gamma, Log-normal, Normal, Pareto, Poisson, StudentT, Triangular, Circle,
Sphere and Weibull distributions.
for sampling from Beta, Binomial, Cauchy, CircleChiSquared, Dirichlet, exponential,
Comment thread
vks marked this conversation as resolved.
Outdated
Fisher F, Gamma, Log-normal, Normal, Pareto, Poisson, StudentT, Triangular and
Weibull distributions, as well as sampling points from the unit circle and unit
sphere surface.

It is worth mentioning the [statrs] crate which provides similar functionality
along with various support functions, including PDF and CDF computation. In
Expand Down
1 change: 1 addition & 0 deletions src/distributions/float.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ pub struct OpenClosed01;
pub struct Open01;


// This trait is needed by both this lib and rand_distr hence is a hidden export
#[doc(hidden)]
pub trait IntoFloat {
Comment thread
vks marked this conversation as resolved.
type F;
Expand Down