标签: matlab swap percentage
我有一个大小为10x100的矩阵。如何在前40%的行中交换第1列和第10列之间的值?
答案 0 :(得分:3)
您可以使用:
A = rand(10,100); A(round(1:0.4*size(A,1)),[1,10]) = A(round(1:0.4*size(A,1)),[10,1]);