MATLAB: How to convert a matrix to a cell

cell arraysmatrix

i have a 3*6 matrix :
26 197 27 197 28 197
26 196 27 196 28 196
26 195 27 195 28 195
and i want to covert it to a cell array :
[26,197] [27,197] [28,197]
[26,196] [27,196] [28,196]
[26,195] [27,195] [28,195]
I'm new to matlab and would appreciate any help.

Best Answer

c=mat2cell(m,ones(1,size(m,1)),2*ones(1,size(m,2)/2));
doc mat2cell % for details...