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
However, it seems like the notation for the interval .. doesn't work "right out of the box" for me at least. I need to import it via
using IntervalArithmetic.Symbols
Perhaps the documentation could use the function interval instead of the .. notation?
Furthermore, I am unsure where the × operator comes from, but I can't seem to use it either. When trying to use it, I get the error message: UndefVarError: '×' not defined in 'Main.var"workspace#24"'.
I'm running my this code in a Pluto notebook (on MacBook Pro M3), using IntervalArithmetic v0.22.19, IntervalRootFinding v0.6.0 and Pluto v0.20.3 on Julia Version 1.11.1 (2024-10-16).
Is this perhaps a problem on my end?
(Edit: I now see that the × operator comes from the IntervalBoxes package)
The text was updated successfully, but these errors were encountered:
Similarly, it seems like the IntervalBox function (used here)
belongs to the IntervalBoxes package and not to the IntervalArithmetic package. I get an UndefVarError for IntervalBox when trying
using IntervalArithmetic
IntervalBox(interval(1, 3), interval(1, 3))
but none with
using IntervalArithmetic, IntervalBoxes
IntervalBox(interval(1, 3), interval(1, 3))
You need to load the IntervalArithmetics.Symbols package, as you already noticed, but otherwise everything should be working (I just tested it). In particular, you don't need IntervalBoxes, the example don't use them anymore.
Uh oh!
There was an error while loading. Please reload this page.
I've been trying to go through the examples in the documentation here https://juliaintervals.github.io/IntervalRootFinding.jl/stable/
However, it seems like the notation for the interval
..
doesn't work "right out of the box" for me at least. I need to import it viaPerhaps the documentation could use the function
interval
instead of the..
notation?Furthermore, I am unsure where the
×
operator comes from, but I can't seem to use it either. When trying to use it, I get the error message:UndefVarError: '×' not defined in 'Main.var"workspace#24"'
.I'm running my this code in a Pluto notebook (on MacBook Pro M3), using
IntervalArithmetic v0.22.19
,IntervalRootFinding v0.6.0
andPluto v0.20.3
onJulia Version 1.11.1 (2024-10-16)
.Is this perhaps a problem on my end?
(Edit: I now see that the
×
operator comes from theIntervalBoxes
package)The text was updated successfully, but these errors were encountered: