Convert nested cell array into single cell array

6 views (last 30 days)
I am getting variable value in workspace in the form of nested cell array
A={{[1] [2] [3]} {[4] [5] [6]}}
but i want answer in the form of single cell array as,
B={[1 2 3] [4 5 6]}
please help

Accepted Answer

Voss
Voss on 22 Dec 2021
Edited: Voss on 22 Dec 2021
A = {{[1] [2] [3]} {[4] [5] [6]}};
B = cellfun(@(x)[x{:}],A,'UniformOutput',false);
display(A);
A = 1×2 cell array
{1×3 cell} {1×3 cell}
display(B);
B = 1×2 cell array
{[1 2 3]} {[4 5 6]}

More Answers (0)

Categories

Find more on Data Types in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!