MATLAB: How to do Batch Assignment

MATLABvariable

Hello,
I am wondering whether there is a way in MATLAB to assign multiple variables with in a single line of code. What I am looking for is as something as follows,
[x,y,z]=[1,2,3]
instead of,
x = 1;
y = 2;
z = 3;
Thanks in advance!

Best Answer

>> [x,y,z]=matsplit([1,2,3]);
Result
x =
1
y =
2
z =
3
Use matsplit custom function here