Combine the rows of an mxn cell array into a single mx1 cell array.

2 views (last 30 days)
I have a cell array of a known number of columns but a variable number of rows.
For example, I might have a 2x3 cell: A = {'hi',1,2;'bye',3,'bob'}.
I'm trying to output a 2x1 cell: B = {{'hi',1 2};{'bye',3,'bob'}}.
I tried using cat(), to no avail. Any suggestions?

Accepted Answer

Stephen23
Stephen23 on 29 Sep 2015
num2cell(A,2)

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!