如何将矩阵的行连接成向量?
对于 m×m(方形)数组,如何将所有行连接成大小为 m^2 的列向量?
For an m-by-m (square) array, how do you concatenate all the rows into a column vector with size m^2 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有几种不同的方法可以将矩阵折叠成向量,具体取决于您希望矩阵的内容如何填充该向量。以下是两个示例,其中一个使用函数
reshape< /code>
(第一次转置矩阵之后)一个使用 冒号语法
( :)
:There are a couple of different ways you can collapse your matrix into a vector, depending upon how you want the contents of your matrix to fill that vector. Here are two examples, one using the function
reshape
(after first transposing the matrix) and one using the colon syntax(:)
:将矩阵更改为向量的一个非常重要的注意事项是,MATLAB 会根据矩阵的列生成输出向量,
例如,如果使用
A(:)
:您可以看到更改的方向在下图中。
A very important note in changing a matrix to a vector is that , MATLAB produce the output vector form the columns of the matrix, if you use
A(:)
for example :
You can see the direction of changing in the following image.