Tavenem.Randomize
2.1.3
Prefix Reserved
See the version list below for details.
dotnet add package Tavenem.Randomize --version 2.1.3
NuGet\Install-Package Tavenem.Randomize -Version 2.1.3
<PackageReference Include="Tavenem.Randomize" Version="2.1.3" />
paket add Tavenem.Randomize --version 2.1.3
#r "nuget: Tavenem.Randomize, 2.1.3"
// Install Tavenem.Randomize as a Cake Addin #addin nuget:?package=Tavenem.Randomize&version=2.1.3 // Install Tavenem.Randomize as a Cake Tool #tool nuget:?package=Tavenem.Randomize&version=2.1.3
Tavenem.Randomize
Tavenem.Randomize provides pseudo-random number generation in various distributions.
For example, to print a single value from a normal distribution:
Console.WriteLine(Randomizer.Instance.NormalDistributionSample());
To print 10,000 values:
foreach (var value in Randomizer.Instance.NormalDistributionSamples(10000))
{
Console.WriteLine(value);
}
Supported distributions:
- Binomial
- Categorical
- Exponential
- Logistic
- Log-normal
- Normal
- "Positive" normal (one half of a normal distribution, giving only values >= mean)
Tavenem.Randomize utilizes a Mersenne Twister by
default, but also provides a mechanism for replacing the underlying generator with your own,
provided it implements the library's IGenerator
interface.
The library also provides a serializable RandomParameters
struct, which can be used to persist or
transport the parameters used to obtain a random value.
Tavenem.Randomize also provides a Rehydrator
class that allows a deterministic set of random
values to be recreated from the same seed, even if those values are requested out of order.
Installation
Tavenem.Randomize is available as a NuGet package.
Roadmap
Tavenem.Randomize is a relatively stable library. Although additions and bugfixes are possible at any time, release should generally be expected to folow the .NET release cycle, with one or more preview releases during a framework preview, and a new stable release coinciding with the release of a new .NET framework major version.
Contributing
Contributions are always welcome. Please carefully read the contributing document to learn more before submitting issues or pull requests.
Code of conduct
Please read the code of conduct before engaging with our community, including but not limited to submitting or replying to an issue or pull request.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net7.0
- Tavenem.Mathematics (>= 2.1.2)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Tavenem.Randomize:
Package | Downloads |
---|---|
Tavenem.Universe
Classes to help model a universe. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.2.9 | 278 | 11/24/2023 |
2.2.8-preview-0002 | 244 | 7/25/2023 |
2.2.7-preview-0001 | 131 | 7/21/2023 |
2.1.3 | 436 | 11/8/2022 |
2.1.0-preview.2 | 116 | 9/29/2022 |
2.1.0-preview.1 | 187 | 9/13/2022 |
2.0.0 | 404 | 12/3/2021 |
2.0.0-preview.1 | 160 | 8/27/2021 |
1.0.1 | 523 | 5/4/2021 |
1.0.0 | 462 | 4/9/2021 |