-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix building of documentation #190
Conversation
cd1cbe9
to
7c9aa89
Compare
7c9aa89
to
00c217d
Compare
[1, 4.5] [-3, 2] | ||
[-4, 2.5] [-1, 9] | ||
[0.5, 4.5] [-3.25, 2.5] | ||
[-4.25, 3] [-2.25, 9] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this change due to the new multiplication settings default?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess so.
@@ -89,12 +89,12 @@ julia> (-1.0..1.0) * A | |||
|
|||
Or compute the square of $A$, | |||
```jldoctest quickstart | |||
julia> A*A | |||
julia> square(A) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think the intent of this paragraph was to show operations that "just work" with interval matrices, hence the A * A, and to introduce specialized methods in the next paragraph. i can send a small change in a new PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I changed it because A*A
now gives much wider intervals.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok i think that's ok for motivation of this package, but we have to add the result using square
.
we can also show the result upon changing the multiplication mode.
Closes #188.
This has also two code changes where the result is wrapped in an
IntervalMatrix
.