MATLAB: Summary of the cell

cell array

Hi I wrote a code that Simplifies the data in cells. outputs of this code is 250 lines that every five line are owned by one person. I have to click each row then see 3 cell belong to 3 images and I have to click again to see its information. I want to see this information after click each row in window with 250 lines and not need to click again. please help me. thank you so much

Best Answer

If your data looks like
a={{1:2 3:4 5:6};{7:8 9:10 11:12}}
Use
out=cell2mat([a{:}]')