combining cells

18 views (last 30 days)
Richard
Richard on 14 Jan 2012
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}];

Accepted Answer

Jan
Jan on 14 Jan 2012
a = [Names1{1, 1:6}];

More Answers (0)

Categories

Find more on Data Types in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!