You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to use this library from its documentation and I wrote this out:
#r "nuget: MathNet.Symbolics, 0.24.0"openMathNet.SymbolicsopenOperatorsletx= symbol "x"lety= symbol "y"letxy= x * y
Evaluate.evaluate <| Map.ofList ["x", Real 2.0;"y", Real 5.0]<| xy
which I expect to work but the last line is invalid because Real evaluates to Approximation and not FloatingPoint, so I have to change the last line to
Trying to use this library from its documentation and I wrote this out:
which I expect to work but the last line is invalid because
Real
evaluates toApproximation
and notFloatingPoint
, so I have to change the last line toAm I doing something wrong that it infers the wrong
Real
?The text was updated successfully, but these errors were encountered: