c=[11 10 00 10 11];k = 1;for ii = 1:length(c) d(k) = floor(c(ii)/10); k = k+1; d(k) = rem(c(ii),10); k = k+1;endd
d就是你要的矩阵