matlab中怎样把一个一行n列的矩阵转换成一个n⼀10行,10列的矩阵,顺序不能乱?

2024-12-31 01:37:22
推荐回答(1个)
回答1:

假设A是原矩阵,试试
B=reshape(A,n/10,10),按列排的

如果要按行排

B=reshape(A,10,n/10)'