mathnet-symbolics
mathnet-symbolics copied to clipboard
Math.NET Symbolics
For supporting code like the following: ``` #r @"src\Symbolics\bin\Debug\netstandard2.0\MathNet.Symbolics.dll" #r @"nuget:MathNet.Numerics" #r @"nuget:FsUnit" #r @"nuget:FParsec" #r @"nuget:MathNet.Numerics.FSharp" #load @"src\Symbolics.Tests\Global.fs" open MathNet.Numerics open MathNet.Symbolics open Global open Operators open VariableSets.Alphabet type...
The following code snippet does not compile because there are no suitable operators for Complex and SymbolicExpression operands in `z * z + i/2`. ``` using System; using static MathNet.Symbolics.SymbolicExpression;...
Hello Christoph, From your source code it seems to me that there is no support for matrix algebra and calculus in the library, is this correct? Introducing matrix algebra is...
Hello. I want to solve a system of equations for a straight line and a tangent to an ellipse. A straight line: y - y1 = (y2 - y1) /...
Hi everybody. How to change the order of the expressions. For example I would like to display an expression like 3x^2 + 3x + 2,but it is beeing displayed as...
Hi! currently I'm trying to generate a large symbolic expression (over 1 000 000 terms). Unfortunately, performance was not very high so I wrote a benchmark to demonstrate the problem....
Trying to use this library from its [documentation](https://symbolics.mathdotnet.com/) and I wrote this out: ```fsharp #r "nuget: MathNet.Symbolics, 0.24.0" open MathNet.Symbolics open Operators let x = symbol "x" let y =...
Hi! I forked the repo and I'm trying to add min and max functions. I'm completely new to F# and I'm struggling with a compile error (that was obviously not...
When making a latex string from latex.formatvisual the source code somehow changes, what should output as '2*( 3 +3*x)' to '2(3+3x)'. It writes the latex codes (not shown here). The...