TMath 1.7.0

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

// Install TMath as a Cake Tool
#tool nuget:?package=TMath&version=1.7.0

TMath - Generics Math Library for C#

NUnit Tests Version Downloads Stars License

TMath is a C# Math library that has function implementations for any number or custom type that implements INumber<T>. Some functions require other implementations like ILogarithmicFunctions<T> or IPowerFunctions<T>.

🌟 • Features

  • Generics Support: With TFunctions, you can make calculations using all number types with the same function call, doesn't matter if you're using float, ulong, decimal or your custom numeric type, as long as it implements INumber<T>
  • Generics Constants: TMath also has a TConstants<T> class for getting mathematical constants as any numeric type, such as Euler's Number, Pi, Golden Ratio and common square roots
  • Expanded math functions: More math functions not supported by the default Math class that also work with generics, such as Factorial().
  • Generics Easings Class: TEasings offers a handful of easing functions for usage in your projects that support any INumber<T>
  • Statistics Functions: Use TStatistics to get info about a data set of numbers, such as Mean, Variance, etc. or use the DescriptiveStatistics class to hold all that info about a data set.

📙 • Getting Started

Installation

There are multiple ways of installing TMath on your project:

  1. NuGet Package Manager: From your IDE, simply open the package manager and search for TMath
  2. .NET CLI: Open a command line and switch to the directory that contains your project file. After that, run the following command
dotnet add package TMath
  1. Forking / Cloning the repository: Clone the repository into your projects and keep the package saved on your project files.

[!IMPORTANT] Downloading the files manually means you will have to update the package manually if you want the latest release whenever the package gets updated

🔧 • Usage

Using TMath is very simple, simply call the functions like you would with Math and it'll automatically return the correct type for most functions, with the exception of a handful of them like Factorial<T>().

For getting any constants using TConstants<T>, specify your type (for example, TConstants<float>).

// Calculating the area of a circle arc.
decimal angle = TConstants<decimal>.Pi;
decimal radius = 1;
decimal areaOfArc = (TFunctions.Rad2Deg(angle) / 360) * TConstants<decimal>.Pi * TFunctions.Pow(radius, 2);
Console.WriteLine(areaOfArc);

// Calculating 20!
long factorial = TFunctions.Factorial<long>(20);
Console.WriteLine(factorial);

// Absolute value
sbyte number = -34;
sbyte abs = TFunctions.Abs(number);
Console.WriteLine(abs);

// Getting the info about a data set
float[] data = new float[] { 1, 2, 3, 4, 5, 6}
float mean = TStatistics.Mean(data);

DescriptiveStatistics statistics = new(data); // Or get all that info computed into the custom class
Console.WriteLine(statistics);

🤝 • Contributing

If you'd like to contribute in anyways, check out the Contributing Guidelines for info on how you can contribute.

📄 • License

TMath is licensed under the MIT License.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

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.7.0 98 3/1/2024
1.6.2 100 2/6/2024
1.6.0 84 1/24/2024
1.5.5 93 1/19/2024
1.5.2 78 1/19/2024
1.5.0 80 1/18/2024
1.4.1 116 12/30/2023
1.3.1 95 12/26/2023
1.2.0 150 12/1/2023
1.1.2 104 11/26/2023
1.1.1 108 11/26/2023
1.1.0 98 11/26/2023
1.0.1 111 11/25/2023
1.0.0 107 11/25/2023

Added TVector2, TVector3, TVector and TMatrix types.