mathlab 数据维度调换函数permute()

A是矩阵,维度[100,50,2]

B = permute(A,[3,2,1]);

B的维度[2,50,100]

你可能感兴趣的:(杂七杂八,matlab,矩阵)