MATLAB: Transposing Blocks of Rows in a Cell Array

cell arraystranspose

Best Answer

newcellarray = num2cell(reshape(yourcellarray.', size(yourcellarray, 2), 43, []), [1 2]); 
newcellarray = vertcat(newcellarray{:})