mirror of
https://github.com/kalmarek/PropertyT.jl.git
synced 2024-12-26 18:40:29 +01:00
fix: can not assign in short-circut eval
This commit is contained in:
parent
7a39775fff
commit
94fd8f0bf9
@ -79,7 +79,9 @@ end
|
|||||||
|
|
||||||
function transform(U::AbstractArray, V::AbstractArray; sparse=false)
|
function transform(U::AbstractArray, V::AbstractArray; sparse=false)
|
||||||
w = U'*V*U
|
w = U'*V*U
|
||||||
sparse && w = sparsify(w)
|
if sparse
|
||||||
|
w = sparsify(w)
|
||||||
|
end
|
||||||
return w
|
return w
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user