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
julia> A =hcat(interval(1, 2))
1×1 Matrix{Interval{Float64}}:
[1.0, 2.0]_com
julia> B =hcat(1)
1×1 Matrix{Int64}:1
julia> A * B
┌ Warning: invalid interval, NaI is returned
└ @ IntervalArithmetic ~/.julia/packages/IntervalArithmetic/GSwKs/src/intervals/construction.jl:462
┌ Warning: interval part of NaI
└ @ IntervalArithmetic ~/.julia/packages/IntervalArithmetic/GSwKs/src/intervals/construction.jl:300
┌ Warning: interval part of NaI
└ @ IntervalArithmetic ~/.julia/packages/IntervalArithmetic/GSwKs/src/intervals/construction.jl:3001×1 Matrix{Interval{Float64}}:
∅_ill_NG
The same happens if A is an IntervalMatrix.
Options:
Restrict the IntervalArithmetic version again.
Forbid mixing interval matrices with normal matrices.
Auto-convert normal matrices to interval matrices before multiplying.
The text was updated successfully, but these errors were encountered:
The same happens if
A
is anIntervalMatrix
.Options:
IntervalArithmetic
version again.The text was updated successfully, but these errors were encountered: