Rychu
-
-
.NET Core 3.1 This package targets .NET Core 3.1. The package is compatible with this framework or higher. .NET Standard 1.1 This package targets .NET Standard 1.1. The package is compatible with this framework or higher. .NET Framework 4.5 This package targets .NET Framework 4.5. The package is compatible with this framework or higher.
- 12,841 total downloads
- last updated 5/31/2020
- Latest version: 1.1.1
Easy to use library for computing math formulas, mean and proportion. Is a basis of Rychusoft.NumericalLibraries. var calc = new Calculator("8^2+5-cos(2*PI)"); var result = calc.Compute(); // result = 68" -
-
- 9,785 total downloads
- last updated 3/17/2018
- Latest version: 1.0.65
Easy to use library for validating Polish NIP numbers: string nip = "8674068337"; bool isValid = Rychusoft.Validators.NipValidator.IsValid(nip); -
-
.NET Core 3.1 This package targets .NET Core 3.1. The package is compatible with this framework or higher. .NET Standard 1.1 This package targets .NET Standard 1.1. The package is compatible with this framework or higher. .NET Framework 4.5 This package targets .NET Framework 4.5. The package is compatible with this framework or higher.
- 9,020 total downloads
- last updated 5/31/2020
- Latest version: 1.1.1
Easy to use library for computing derivative and function value at given point. var derivative = new Derivative("x^2 + 5 - cos(2 * PI * x)"); var result = derivative.ComputeDerivative(1); // result = 2 -
-
-
.NET Core 3.1 This package targets .NET Core 3.1. The package is compatible with this framework or higher. .NET Standard 1.1 This package targets .NET Standard 1.1. The package is compatible with this framework or higher. .NET Framework 4.5 This package targets .NET Framework 4.5. The package is compatible with this framework or higher.
- 7,618 total downloads
- last updated 5/31/2020
- Latest version: 1.1.1
Common library for Rychusoft.NumericalLibraries suite -
-
- 7,569 total downloads
- last updated 12/22/2019
- Latest version: 1.0.93
Easy to use library for validating Polish PESEL numbers: string pesel = "44051401458"; bool isValid = Rychusoft.Validators.PeselValidator.IsValid(pesel); -
- 4,954 total downloads
- last updated 1/21/2017
- Latest version: 1.0.6230.34628
Set of Bessel's functions for Rychusoft.NumericalLibraries suite -
- 4,608 total downloads
- last updated 3/18/2018
- Latest version: 1.0.40
Easy to use library for validating Polish REGON numbers: string regon = "575064641"; bool isValid = Rychusoft.Validators.RegonValidator.IsValid(regon); -
-
.NET Core 3.1 This package targets .NET Core 3.1. The package is compatible with this framework or higher. .NET Standard 1.1 This package targets .NET Standard 1.1. The package is compatible with this framework or higher. .NET Framework 4.5 This package targets .NET Framework 4.5. The package is compatible with this framework or higher.
- 4,550 total downloads
- last updated 5/31/2020
- Latest version: 1.1.1
Easy to use library for computing differential equations. var math = new Rychusoft.NumericalLibraries.Differential.Differential(""3*x^2-5""); var result = math.ComputeDifferential(4, 2, 0); // result = 46 -
-
-
.NET Core 3.1 This package targets .NET Core 3.1. The package is compatible with this framework or higher. .NET Standard 1.1 This package targets .NET Standard 1.1. The package is compatible with this framework or higher. .NET Framework 4.5 This package targets .NET Framework 4.5. The package is compatible with this framework or higher.
- 4,329 total downloads
- last updated 5/31/2020
- Latest version: 1.1.1
Easy to use library for computing zero (root) of a function. var math = new FunctionRoot.Hybrid("(x+1)^2-9", 0, 1.5); var result = math.ComputeHybrid(); // result = 2 -
-
-
.NET Core 3.1 This package targets .NET Core 3.1. The package is compatible with this framework or higher. .NET Standard 1.1 This package targets .NET Standard 1.1. The package is compatible with this framework or higher. .NET Framework 4.5 This package targets .NET Framework 4.5. The package is compatible with this framework or higher.
- 3,778 total downloads
- last updated 5/31/2020
- Latest version: 1.1.1
Library for computing function interpolation and approximation -
-
- 3,690 total downloads
- last updated 5/31/2020
- Latest version: 1.1.1
Chart component for Rychusoft.NumericalLibraries suite -
-
.NET Core 3.1 This package targets .NET Core 3.1. The package is compatible with this framework or higher. .NET Standard 1.1 This package targets .NET Standard 1.1. The package is compatible with this framework or higher. .NET Framework 4.5 This package targets .NET Framework 4.5. The package is compatible with this framework or higher.
- 3,607 total downloads
- last updated 5/31/2020
- Latest version: 1.1.1
Library for computing fourier transform -
-
-
.NET Core 3.1 This package targets .NET Core 3.1. The package is compatible with this framework or higher. .NET Standard 1.1 This package targets .NET Standard 1.1. The package is compatible with this framework or higher. .NET Framework 4.5 This package targets .NET Framework 4.5. The package is compatible with this framework or higher.
- 3,578 total downloads
- last updated 5/31/2020
- Latest version: 1.1.1
Library for computing linear equations -
-
- 3,220 total downloads
- last updated 2/27/2022
- Latest version: 2.2.0
Takes care of creating and deleting PID file in ASP.Net Core applications. -
-
.NET Core 3.1 This package targets .NET Core 3.1. The package is compatible with this framework or higher. .NET Standard 1.1 This package targets .NET Standard 1.1. The package is compatible with this framework or higher. .NET Framework 4.5 This package targets .NET Framework 4.5. The package is compatible with this framework or higher.
- 2,855 total downloads
- last updated 5/31/2020
- Latest version: 1.1.1
Easy to use library for computing integrals. var math = new Integral("3*x^2-5", 5, 10); var result = math.ComputeIntegral(); // result = 850 -
-
- 1,643 total downloads
- last updated 3/10/2020
- Latest version: 1.0.20200310.4
Easy to use library for measuring execution times of code sections: var execution = ExecutionTimeCounter.Start("SLEEP EXECUTION"); Thread.Sleep(5); ExecutionTimeCounter.Stop(execution); var result =... More information