cell2mat Combine a cell array of matrices into one matrix.
Synopsis
m   
cell2mat(c) Description
M   
CELL2MAT(C)
C   
Cell array of matrices: {M11 M12... ; M21 M22... ; ...} returns
M   
Single matrix: [M11 M12 ...; M21 M22... ; ...] Examples
c   
{[1 2] [3]; [4 5; 6 7] [8; 9]};
c   
{[1 2] [3]; [4 5; 6 7] [8; 9]};
m   
cell2mat(c) See also mat2cell

See the matlab file cell2mat.m (may require other functions)

Back to functions