Found 4 packages
An arbitrary precision decimal (base 10) floating point number type using a mantissa and exponent. Supports nth roots, trigonometric functions, logarithms, natural e, pi, etc.
An arbitrary precision decimal (base 10) floating point number type using a mantissa and exponent. Supports logarithms, Exp, Pi, trigonometric functions, etc.
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.
String Math Calculator is able to solve math calculations within a string, returning a double as the product. Supports the basic operators, *, /, + and -. Also supports parentheses, roots, exponents and logarithms. The operations are calculated left to right by PEMDAS order. Exp: using StringMathCalculator; Calculator calculator = new Calculator(); Console.WriteLine(calculator.Calculation("3 + 7 / 6 - (6 * 4)").Calculate());