[X, Y] = meshgrid(1:3, 1:3);dm = [X(:) Y(:)];这样也可以
其实不太清楚你要问什么,如果你是要把原来的矩阵按列优先排成一行的话,用reshape就可以了> vec = reshape(A, 1, [])