Convert nested cell array into single cell array

8 Ansichten (letzte 30 Tage)
Mausmi Verma
Mausmi Verma am 22 Dez. 2021
Kommentiert: Mausmi Verma am 26 Dez. 2021
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

Akzeptierte Antwort

Voss
Voss am 22 Dez. 2021
Bearbeitet: Voss am 22 Dez. 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]}

Weitere Antworten (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by