mathnet-symbolics icon indicating copy to clipboard operation
mathnet-symbolics copied to clipboard

Math.NET Symbolics

Results 53 mathnet-symbolics issues
Sort by recently updated
recently updated
newest added

I think hardcoding "x" more than once should be avoided because it is error prone. It potentially causes runtime errors. ``` var x = Expr.Variable("x"); Func f = (x *...

Currently, it seems that there are three different simplify functions in different modules - Rational, Trigonometric and Exponential. I would like to have an all-in-one simplify function to make things...

`MathNet.Symbolics.fsx` and `MathNet.Numerics.fsx` (for MathNet.Numerics.FSharp) files are absent in according packages folders.

Is there any plan to support the continued fraction (CF)? Examples I want to cover with CF: 1. For rational number : p / q - ContinuedFraction( 1.23 ) =>...

The Antiderivative module is not yet implemented in this product. I am not sure how easily the Risch algorithm or others can be added, but I think it may be...

No. | Input | Return | Expected --|----|------|------ (a) | -1Q**2 | 1 | -1 (b) | negate (one**two) | -1 | -1 (c) | 0 - 1Q**2 | -1...

This Symbolics says that "Expressions always appear in a simplified form according to a set of rules." If so, how about adding some known rules to the trigonometric functions? For...

Today I updated my local master with the latest origin/master. However, there are no tests in the Test Explorer of Visual Studio. I did followings: `git fetch upstream` `git rebase...

Is there a way to register C# functions to be identified by Infix/Expression? For example, I would like to parse and evaluate inverse hyperbolic sine function, "ArcSinh(z)" , but it...

The way MathNet.Symbolics handles division with infinite and undefined values is a bit incorrect in my opinion: `1/0` evaluates to ComplexInfinity, when I would really expect it to be PositiveInfinity,...