An open API service indexing awesome lists of open source software.

https://github.com/sepppenner/decimalmath

DecimalMath is a library to calculate mathematic functions with the decimal data type.
https://github.com/sepppenner/decimalmath

Last synced: 10 months ago
JSON representation

DecimalMath is a library to calculate mathematic functions with the decimal data type.

Awesome Lists containing this project

README

          

DecimalMath
====================================

DecimalMath is a library to calculate mathematic functions with the decimal data type.

[![Build status](https://ci.appveyor.com/api/projects/status/w79tkhi5jy9c2uih?svg=true)](https://ci.appveyor.com/project/SeppPenner/decimalmath)
[![GitHub issues](https://img.shields.io/github/issues/SeppPenner/DecimalMath.svg)](https://github.com/SeppPenner/DecimalMath/issues)
[![GitHub forks](https://img.shields.io/github/forks/SeppPenner/DecimalMath.svg)](https://github.com/SeppPenner/DecimalMath/network)
[![GitHub stars](https://img.shields.io/github/stars/SeppPenner/DecimalMath.svg)](https://github.com/SeppPenner/DecimalMath/stargazers)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://raw.githubusercontent.com/SeppPenner/DecimalMath/master/License.txt)
[![Nuget](https://img.shields.io/badge/DecimalMath-Nuget-brightgreen.svg)](https://www.nuget.org/packages/HaemmerElectronics.SeppPenner.DecimalMath/)
[![NuGet Downloads](https://img.shields.io/nuget/dt/HaemmerElectronics.SeppPenner.DecimalMath.svg)](https://www.nuget.org/packages/HaemmerElectronics.SeppPenner.DecimalMath/)
[![Known Vulnerabilities](https://snyk.io/test/github/SeppPenner/DecimalMath/badge.svg)](https://snyk.io/test/github/SeppPenner/DecimalMath)
[![Gitter](https://img.shields.io/matrix/DecimalMath_community%3Agitter.im?server_fqdn=matrix.org)](https://matrix.to/#/#DecimalMath_community:gitter.im)
[![Blogger](https://img.shields.io/badge/Follow_me_on-blogger-orange)](https://franzhuber23.blogspot.de/)
[![Patreon](https://img.shields.io/badge/Patreon-F96854?logo=patreon&logoColor=white)](https://patreon.com/SeppPennerOpenSourceDevelopment)
[![PayPal](https://img.shields.io/badge/PayPal-00457C?logo=paypal&logoColor=white)](https://paypal.me/th070795)

## Available for
* Net 8.0
* Net 9.0

## Net Core and Net Framework latest and LTS versions
* https://dotnet.microsoft.com/download/dotnet

## Available methods

```csharp
decimal Abs(decimal x);
decimal Acos(decimal x);
decimal Asin(decimal x);
decimal Atan(decimal x);
decimal Atan2(decimal x);
decimal Cos(decimal x);
decimal Cosh(decimal x);
decimal Exp(decimal x);
decimal Log(decimal x);
decimal Log10(decimal x);
decimal Power(decimal value, decimal pow);
decimal PowerN(decimal value, int power);
int Sign(decimal x);
decimal Sin(decimal x);
decimal Sinh(decimal x);
decimal Sqrt(decimal x, decimal epsilon = Zero);
decimal Tan(decimal x);
decimal Tanh(decimal x);
```

The project can be found on [nuget](https://www.nuget.org/packages/HaemmerElectronics.SeppPenner.DecimalMath/).

## Install

```bash
dotnet add package HaemmerElectronics.SeppPenner.DecimalMath
```

Change history
--------------

See the [Changelog](https://github.com/SeppPenner/DecimalMath/blob/master/Changelog.md).