how to convert cell array to matrix

i have a cell array that looks like below. I would like to convert it into a matrix that is 480000X384. Could anyone help me on this please?

 Accepted Answer

Where C is your cell array:
M = horzcat(C{:}).'

More Answers (0)

Categories

Asked:

on 31 Jan 2021

Answered:

on 31 Jan 2021

Community Treasure Hunt

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

Start Hunting!