How do I do multiple assignment in MATLAB?
- by Benjamin Oakes
Here's an example of what I'm looking for:
>> foo = [88, 12];
>> [x, y] = foo;
I'd expect something like this afterwards:
>> x
x =
88
>> y
y =
12
But instead I get errors like:
??? Too many output arguments.
I thought deal() might do it, but it seems to only work on cells.
>> [x, y] =…