Troschuetz.Random 4.0.0

Suggested Alternatives

MathNet.Numerics

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package Troschuetz.Random --version 4.0.0
NuGet\Install-Package Troschuetz.Random -Version 4.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Troschuetz.Random" Version="4.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Troschuetz.Random --version 4.0.0
#r "nuget: Troschuetz.Random, 4.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Troschuetz.Random as a Cake Addin
#addin nuget:?package=Troschuetz.Random&version=4.0.0

// Install Troschuetz.Random as a Cake Tool
#tool nuget:?package=Troschuetz.Random&version=4.0.0

Fully managed library providing various random number generators and distributions.
More precisely, this library offers 7 generators (ALF, MT19937, Standard, XorShift128, NR3, NR3Q1, NR3Q2), 6 discrete distributions (Bernoulli, Binomial, Categorical, DiscreteUniform, Geometric, Poisson) and 21 continuous distributions (like Normal, Exponential, ChiSquare, Beta, and so on); moreover, it offers a random class similar to the one Python offers (TRandom).
All the hard work behind this library was done by Stefan Troschütz, and for which I thank him very much. What I have done with his great project, was simply to refactor and improve his code, while offering the new random class similar to the one Python offers.
You can find the modified source code and the available documentation at the project URL.

Product Compatible and additional computed target framework versions.
.NET Framework net40-client is compatible.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (12)

Showing the top 5 NuGet packages that depend on Troschuetz.Random:

Package Downloads
CryptoBazar

Package Description

Stringier

Text extensions for a more pleasant text processing experience.

ZHWebFramework.Common

Just my common library

NDice.Randomizers.Troschuetz

Randomizer for NDice using Troschuetz.Random

GoRogue-std2

Roguelike/2D game utility library.

GitHub repositories (3)

Showing the top 3 popular GitHub repositories that depend on Troschuetz.Random:

Repository Stars
UlyssesWu/FreeMote
Managed Emote/PSB tool libs.
GoodAI/BrainSimulator
Brain Simulator is a platform for visual prototyping of artificial intelligence architectures.
FlorianRappl/Mages
:tophat: MAGES is a very simple, yet powerful, expression parser and interpreter.
Version Downloads Last updated

* BREAKING CHANGE: Generic TRandom and generic distributions have been removed.
* BREAKING CHANGE: Fixed an inconsistency with Gamma distribution.
* Added new generators from a famous book about numerical analysis: NR3, NR3Q1, NR3Q2.
* Implemented library extensiibility (feature #3). See project README for further details.
* Added the logistic distribution (feature #4).
* Added a DLL compiled for .NET 4.5.