Double = in one line of code

1 view (last 30 days)
Zeynab Mousavikhamene
Zeynab Mousavikhamene on 13 Aug 2019
Commented: James Tursa on 13 Aug 2019
Can I define a=b=c in one line of code in matlab? if yes what is the syntax?
I do not want to define in double section like a=b; c=b;

Answers (2)

madhan ravi
madhan ravi on 13 Aug 2019

Andrei Bobrov
Andrei Bobrov on 13 Aug 2019
b = 1000;
zz = {b};
[a,c] = zz{[1,1]};
  1 Comment
Rik
Rik on 13 Aug 2019
Nice hack, although I think deal is more clear when reading the code. I didn't know this syntax also generated a comma-separated list like {:} does.

Sign in to comment.

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!