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
Hi there,
I was not able to read back a complex skew-symmetric matrix.
Therefore, I think there should be a -1 instead of a -11.
# Hack to represent skew-symmetric matrix as an ordinary matrix with duplicated elements function skewsymmetric!(M::AbstractMatrix) m,n = size(M) m == n || throw(DimensionMismatch()) return M .- transpose(tril(M, -11)) end
The text was updated successfully, but these errors were encountered:
tkonolige
added a commit
to tkonolige/MatrixMarket.jl
that referenced
this issue
Aug 19, 2020
Hi there,
I was not able to read back a complex skew-symmetric matrix.
Therefore, I think there should be a -1 instead of a -11.
# Hack to represent skew-symmetric matrix as an ordinary matrix with duplicated elements function skewsymmetric!(M::AbstractMatrix) m,n = size(M) m == n || throw(DimensionMismatch()) return M .- transpose(tril(M, -11)) end
The text was updated successfully, but these errors were encountered: