Aryth 0.2.24

dotnet add package Aryth --version 0.2.24                
NuGet\Install-Package Aryth -Version 0.2.24                
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="0.2.24" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Aryth --version 0.2.24                
#r "nuget: Aryth, 0.2.24"                
#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 Aryth as a Cake Addin
#addin nuget:?package=Aryth&version=0.2.24

// Install Aryth as a Cake Tool
#tool nuget:?package=Aryth&version=0.2.24                

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. 
.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
0.2.24 69 11/5/2024
0.2.23 69 11/2/2024
0.2.22 66 11/1/2024
0.2.21 443 10/25/2021
0.2.20 342 10/25/2021
0.2.18 386 10/25/2021
0.2.17 399 10/25/2021
0.2.16 375 10/25/2021
0.2.15 426 10/25/2021
0.2.13 396 10/25/2021
0.2.12 362 10/25/2021
0.2.11 367 10/11/2021
0.2.10 460 10/10/2021
0.2.9 452 10/9/2021
0.2.8 380 10/8/2021
0.2.7 354 10/8/2021
0.2.5 368 10/5/2021
0.2.4 364 10/5/2021
0.2.3 446 10/3/2021
0.2.2 442 10/3/2021
0.2.0 457 9/27/2021
0.1.23 358 9/27/2021
0.1.22 393 9/26/2021
0.1.21 433 9/26/2021
0.1.20 401 9/5/2021
0.1.19 433 9/4/2021
0.1.18 430 9/4/2021
0.1.17 395 9/3/2021
0.1.16 415 9/3/2021
0.1.15 372 9/2/2021
0.1.14 372 9/2/2021
0.1.13 394 9/2/2021
0.1.12 391 8/31/2021
0.1.11 398 8/31/2021
0.1.10 377 8/30/2021
0.1.9 377 8/30/2021
0.1.8 383 8/30/2021
0.1.7 372 8/30/2021
0.1.6 373 8/30/2021
0.1.5 386 8/29/2021
0.1.4 385 8/29/2021
0.1.3 391 8/29/2021
0.1.2 425 8/29/2021