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
using Symbolics
using SymbolicNumericIntegration
using SymbolicUtils
@syms x
expr=x*Symbolics.Term(exp,[1])
julia> SymbolicNumericIntegration.integrate(expr,x)
(1.3591409142295223(x^2), 0, 2.220446049250313e-16)
As can be seen, exp(1) before the call remained exp(1) because of using Symbolics.Term(exp,[1]) to prevent evaluation.
But inside/during the call SymbolicNumericIntegration.integrate it was converted at one point to floating point.
Is there a way to keep it as exp(1) so the result should be exp(1)*x^2/2 ?
Julia 1.8 on Linux
The text was updated successfully, but these errors were encountered:
reference
https://discourse.julialang.org/t/basic-question-on-julia-symbolic-how-to-keep-exp-1-as-is-and-not-convert-it-to-a-floating-point-number/86476
Using this code
As can be seen, exp(1) before the call remained exp(1) because of using
Symbolics.Term(exp,[1])
to prevent evaluation.But inside/during the call
SymbolicNumericIntegration.integrate
it was converted at one point to floating point.Is there a way to keep it as
exp(1)
so the result should beexp(1)*x^2/2
?Julia 1.8 on Linux
The text was updated successfully, but these errors were encountered: