A comprehensive mathematical library providing 54+ functions covering number theory, trigonometry, logarithms, statistical operations, and special functions. Compatible with Python's math module behavior and optimized for .NET performance.
$ dotnet add package FTI.MathNETThis package will help you to use mathematical functions with ease to implement logic with less lines of codes. It gives better performance.
Documentation will be updated soon. Stay connected.
A global library for basic mathematical functions. This package will help you to use mathematical functions with ease to implement logic with fewer lines of code. It gives better performance.
To install MathNET, run the following command:
dotnet add package FTI.MathNET
or,
dotnet add package FTI.MathNET --version <version-number>
csc -reference:FTI.MathNET.dll Program.cs
dotnet restore dotnet build
Here's an example of how to use the library:
using FTI.MathNET;
class Program
{
static void Main(string[] args)
{
int result = Math.Factorial(5);
Console.WriteLine($"Factorial(5) = {result}");
}
}