大家好,我是小新,我来为大家解答以上问题。reshaped,reshape很多人还不知道,现在让我们一起来看看吧!
reshape 函数有以下五种调用形式:
1、B = reshape(A,m,n)
2、B = reshape(A,m,n,p,...)
3、B = reshape(A,[m n p ...])
4、B = reshape(A,...,[ ],...)
5、B = reshape(A,size)
reshape是一种函数,函数可以重新调整矩阵的行数、列数、维数。
扩展资料:
reshape 函数就是变换成特定维数的矩阵,是按照列的顺序进行转换的,也就是第一列读完,读第二列。
具体例子:
A =
[ 1 4 7 10
2 5 8 11
3 6 9 12]
B = reshape(A,2,6)
B =
[1 3 5 7 9 11
2 4 6 8 10 12]
B = reshape(A,2,[])
B =
[ 1 3 5 7 9 11
2 4 6 8 10 12]
参考资料:搜狗百科:reshape 函数
本文到此讲解完毕了,希望对大家有帮助。