Rationals 1.4.0+build.75
Implementation of rational number arithmetic for .NET with arbitrary precision.
Supported features:
- implicit conversions - rationals integrate seamlessly with other number types
- unlimited precision - rationals use BigInteger inside
- canonical form - each rational can have its canonical form (irreducible fraction where denominator is always positive)
- separate whole and fractional part - any rational number can be separated into a whole part (integer quotient aka result of integer division) and fractional part (reminder of the integral division aka result of modulo operation)
- comparison & equality
- multiple formatting options - ToString("C") (canonical form), ToString("W") (whole + fractional part), or normal fraction format
- continued fraction expansion - expand rational numbers to continued fraction (sequence of coefficients), construct rational numbers from sequence of continued fraction coefficients
- rational number approximation - approximate floating point numbers (decimal, double, float) as rational numbers with customizable tolerance
Example usage:
Rational left = (Rational) 1 / 2;
Rational right = (Rational) 1 / 4;
Rational sum = left + right; // equals to: 3 / 4
Install-Package Rationals -Version 1.4.0
dotnet add package Rationals --version 1.4.0
<PackageReference Include="Rationals" Version="1.4.0" />
paket add Rationals --version 1.4.0
Release Notes
https://github.com/tompazourek/Rationals/releases
Dependencies
-
.NETFramework 4.0
- No dependencies.
-
.NETStandard 1.3
- NETStandard.Library (>= 1.6.1)
Used By
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Rationals:
Package | Downloads |
---|---|
Peachpie.Library
Peachpie PHP language library functions.
|
|
CryptoExchangeClient
Clients for multiple cryptocurrency exchanges. All clients have a shared interface for common actions.
|
|
DelSquared.Radicals
.NET implementation of radical expressions enabling radical expression arithmetic.
|
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Rationals:
Repository | Stars |
---|---|
peachpiecompiler/peachpie
PeachPie - the PHP compiler and runtime for .NET and .NET Core
|