The core of the C# math rendering engine - CSharpMath.
Can display beautiful math equations and symbols from the LaTeX format.
Needs a front end to function.
Currently, front ends exist for Avalonia, iOS, SkiaSharp and Xamarin.Forms.
Package containing extensive mathematical capabilities for .NET including:
Solution of mathematical expressions provided in string format with support for a large number of functions, operators, logical expressions and variables.
Solution of systems of linear simultaneous equations.
Polynomial...
More information
Enables to work with formulas built in the code or from a string. Computing, derivating, latex rendering, fast functions, solving equations and systems of equations analytycally, simplification, and much more.
A lightweight library to quickly pro rate a number across a collection.
Supports:
-Simple even pro rata
-Weighted pro rata
-Specify a Decimal place to be applied to each installment
For more information visit the project URL. https://github.com/RhynoVDS/ProRata.NET
Reads and evaluates string representations of mathematical formulae. Can be used for solving equations or plotting graphs.
eg.
var formula = MathParse.Parse("3sinx + 1");
return formula.Evaluate(Math.Pi);
will return 1 (which is 3sinĪ + 1)
Can convert CSharpMath.Atom.MathList parsed from LaTeX with CSharpMath.Atom.LaTeXParser
into actual mathematical expressions that are evaluatable with AngouriMath.
Supports arithmetic, trigonometry, symbolic simplification and expansion,
as well as matrices, sets, and equation...
More information