Possible Duplicate:
How do I do multiple assignment in MATLAB?
So let's say I have a vector p = [1 2 3]. I want a command that looks like this:
[x y z] = p;
so that x = p(1), y = p(2), and z = p(3).
Is there an easy way to do this?
So let's say I have a vector
so that x = p(1), y = p(2), and z = p(3). Is there an easy way to do this? |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Convert to cell array.
|
|||
|
|
|
Well, turns out there's no way to one-line this, so I wrote a function.
|
|||
|
|
|
You can use
|
|||||
|