mathnet-symbolics
mathnet-symbolics copied to clipboard
Math.NET Symbolics
I have situations where my symbol names contain characters that require escaping when using LaTeX, such as underscore. Considering the names are considered valid by MathNet, I sort of expected...
Using C# nuget package MathNet.Symbolics, ver 0.20.0 Parsing this expression "29^11^7" leads to freeze. Tried with Infix.ParseOrUndefined("29^11^7"); and SymbolicExpression.Parse("29^11^7") When tried to put parenthesis it works fine "(29^11)^7"
## Current behavior The eager numeric execution can result in calculations which are way too large to calculate numerically: ```fsharp 9Q ** 99Q ==> "29512665430652752148753480226197736314359272517043832886063884637676943433478020332709411004889" (9Q ** 9Q) ** 9Q...
Hi Is it possible to solve simple equations with this package? Would like it to solve eg. “2x + 3 = 4x+5” or simplify “a + a - ( 2...
In my code, I have a `SymbolicExpression Function`, which when given specific values, the result is infinity. As an example: ```cs using Expr = MathNet.Symbolics.SymbolicExpression; Expr Function(Expr symbol, Expr function)...
Hi, Is there a way to define a finite real sequence indexed by integers. I'd like to evaluate an expression such as "u(1)+u(2)" where u is defined by an explicit...
Hello, my problem is the following: I am working with unity3d in C # language and when I want to declare a variable, I need to specify the type of...
PR for fixing #68
This is applied only for -1 or minus. e.g. -(a + b) => -a - b Please refer to the discussion in #44.
When evaluating `1/(1/d + a)` with d = 0.0 (and a = 2.0), it returns "not supported". Rational.simplify is required in order to get correct answer, 0.0. However, sometimes, the...