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
but otherwise just integrating exp2 on its own is problematic, yielding
julia>integrate(exp2, α)
(Num[α, 2(α^2)], 0, 0)
with the expectation of [α, α^2 / 2]. It seems that the vector is treated as constant wrt. α and α * [1, 2 * α] is just being simplified behind the scenes.
Since this is not yet supported, should this be explicitly disallowed/ given with a warning, etc?
The text was updated successfully, but these errors were encountered:
Noticing that the case
is correct, going element-wise works essentially as intended
but otherwise just integrating
exp2
on its own is problematic, yieldingwith the expectation of
[α, α^2 / 2]
. It seems that the vector is treated as constant wrt.α
andα * [1, 2 * α]
is just being simplified behind the scenes.Since this is not yet supported, should this be explicitly disallowed/ given with a warning, etc?
The text was updated successfully, but these errors were encountered: