MATLAB: How to unpack contents of a cell array

cell array

Best Answer

You can use a comma-separated list, and simply concatenate the contents into one matrix:
mat = vertcat(dom_psth_tb{:})
Read this to know more about comma-separated lists: