MATLAB: Combining cells

cell arrays

How is it possible to do the following but with a faster method i.e. not having to type each individual cell:
a = [Names1{1,1};Names1{1,2};Names1{1,3};Names1{1,4};Names1{1,5};Names1{1,6}];

Best Answer

a = [Names1{1, 1:6}];