Aryth 1.0.0

dotnet add package Aryth --version 1.0.0
                    
NuGet\Install-Package Aryth -Version 1.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="Aryth" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Aryth" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Aryth" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Aryth --version 1.0.0
                    
#r "nuget: Aryth, 1.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.
#addin nuget:?package=Aryth&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Aryth&version=1.0.0
                    
Install as a Cake Tool

Banner

Basic math utils

Version Downloads Dependent Libraries Language Compatibility License

Features

  • Extend functions for float and double. e.g. Round, AlmostEqual, Limit.
  • Compute characteristic of array or 2d-array, e.g. Bound, Scale.
  • Methods for polar coordinates, e.g. Rotate, Distance, Near.
  • Parse algebraic expression and calculate, e.g. parse "3 + 4 * 2 / ( 1 - 5 ) ^ 2 ^ 3" and return 3.5.

Content

Package Content
Aryth The core library, including all Aryth sub projects
Aryth.Bounds Compute (min, max) for array and 2d-array
Aryth.Calculator Parse algebraic expression and calculate
Aryth.Comparer Comparer for array sort
Aryth.Coord Functions for Descartes coordinates
Aryth.Flopper Colorize array and 2d-array in terminal
Aryth.Math Extend functions for float and double
Aryth.NiceScale Compute (nice) scale for an array
Aryth.Polar Functions for polar coordinates
Aryth.Types Base types in Aryth series

Install

Aryth targets .NET Standard 2.0, fits both .NET and .NET Framework.

Install Aryth package and sub packages.

NuGet Package Manager:

Install-Package Aryth

.NET CLI:

dotnet add package Aryth

All versions can be found on nuget.

Usage

Convert color

using Aryth.Calculator;

var expression = "3 + 4 * 2 / ( 1 - 5 ) ^ 2";
var result = expression.Calculate();
// result = 3.5

Bound of array

using Aryth.Bounds;

var samples = new[] { "foo", "bar", "zen", "16", "24", "32", "64" };
var (vector, bound) = vec.SoleBound();
// vector = [ NaN, NaN, NaN, 1, 2, 3 ]
// bound = ( 16, 64 )

Flop an array

using Aryth.Flopper;

var samples = new[] { "foo", "bar", "zen", "des" };
var flopper = FiniteFlopper<string>.From(samples);
Console.WriteLine($">> [next] {flopper.MoveNext()} {flopper.Current}"); // >> [next] True bar
Console.WriteLine($">> [next] {flopper.MoveNext()} {flopper.Current}"); // >> [next] True des
Console.WriteLine($">> [next] {flopper.MoveNext()} {flopper.Current}"); // >> [next] True foo
Console.WriteLine($">> [next] {flopper.MoveNext()} {flopper.Current}"); // >> [next] True zen
Console.WriteLine($">> [next] {flopper.MoveNext()} {flopper.Current}"); // >> [next] False zen

Examples


Aryth has a test suite in the test project.

Feedback

Aryth is licensed under the MIT license.

Bug report and contribution are welcome at the GitHub repository.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0 122 11/29/2024
0.3.8 116 11/27/2024
0.3.6 116 11/26/2024
0.3.5 118 11/25/2024
0.3.4 108 11/25/2024
0.3.3 112 11/24/2024
0.3.2 116 11/24/2024
0.3.1 109 11/24/2024
0.3.0 113 11/24/2024
0.2.24 122 11/5/2024
0.2.23 118 11/2/2024
0.2.22 114 11/1/2024
0.2.21 512 10/25/2021
0.2.20 402 10/25/2021
0.2.18 450 10/25/2021
0.2.17 460 10/25/2021
0.2.16 432 10/25/2021
0.2.15 488 10/25/2021
0.2.13 459 10/25/2021
0.2.12 425 10/25/2021
0.2.11 426 10/11/2021
0.2.10 521 10/10/2021
0.2.9 520 10/9/2021
0.2.8 441 10/8/2021
0.2.7 413 10/8/2021
0.2.5 429 10/5/2021
0.2.4 440 10/5/2021
0.2.3 505 10/3/2021
0.2.2 505 10/3/2021
0.2.0 516 9/27/2021
0.1.23 423 9/27/2021
0.1.22 458 9/26/2021
0.1.21 496 9/26/2021
0.1.20 462 9/5/2021
0.1.19 493 9/4/2021
0.1.18 487 9/4/2021
0.1.17 451 9/3/2021
0.1.16 479 9/3/2021
0.1.15 429 9/2/2021
0.1.14 439 9/2/2021
0.1.13 456 9/2/2021
0.1.12 454 8/31/2021
0.1.11 456 8/31/2021
0.1.10 440 8/30/2021
0.1.9 434 8/30/2021
0.1.8 445 8/30/2021
0.1.7 435 8/30/2021
0.1.6 436 8/30/2021
0.1.5 451 8/29/2021
0.1.4 451 8/29/2021
0.1.3 457 8/29/2021
0.1.2 507 8/29/2021