ITensor / NDTensors.jl

A Julia package for n-dimensional sparse tensors.
Apache License 2.0
27 stars 7 forks source link

Change SVD convention #13

Open mtfishman opened 4 years ago

mtfishman commented 4 years ago

Right now, U,S,V = svd(A) has the convention U*S*transpose(V) == A, while Julia uses the convention that it outputs V such that U*S*V' == A. We should consider changing it to the Julia convention.