how to convert a matrix to a cell?

2 次查看(过去 30 天)
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.

采纳的回答

dpb
dpb 2015-12-13
编辑:dpb 2015-12-13
c=mat2cell(m,ones(1,size(m,1)),2*ones(1,size(m,2)/2));
doc mat2cell % for details...

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by