-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Document Upper/LowerTriangular #22504
Conversation
Failure is #22472 (comment) |
We didn't have this yet? LGTM |
base/linalg/symmetric.jl
Outdated
@@ -49,7 +50,8 @@ end | |||
""" | |||
Hermitian(A, uplo=:U) | |||
|
|||
Construct a `Hermitian` matrix from the upper (if `uplo = :U`) or lower (if `uplo = :L`) triangle of `A`. | |||
Construct a `Hermitian` view from the upper (if `uplo = :U`) or lower (if `uplo = :L`) |
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.
What is best, "from the upper" or "of the upper"?
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.
"of the upper" maybe?
and clarify that Symmetric/Hermitian are views as well add references to Upper/LowerTriangular in the manual
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.
Fantastic! :)
Thanks! |
Document
UpperTriangular
/LowerTriangular
and clarify thatSymmetric
/Hermitian
are views of the underlying matrix as well.