matlab-to-julia icon indicating copy to clipboard operation
matlab-to-julia copied to clipboard

multiple return values not handled correctly

Open baggepinnen opened this issue 5 years ago • 1 comments

  • [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

baggepinnen avatar Apr 02 '19 18:04 baggepinnen

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!

lakras avatar Apr 18 '19 02:04 lakras