matlab-to-julia
matlab-to-julia copied to clipboard
multiple return values not handled correctly
-
[u,s,v]=svd(X);
is translated to the same expression -
function [X,Y]=li(AA,BB)
is translated to
function li(AA,BB)
⋮
return [X,Y]
end
Hi! Thank you so much, and sorry again for the delay. Would you mind please writing up some possible correct/expected translations for both of these? Thank you!