how can i create a matrix using vector with lag using matlab

北慕城南 提交于 2019-12-25 19:01:54

问题


vector=
3
4
8
5
2
1
6

the matrix i want to create is
3 0 0
4 3 0
8 4 3
5 8 4
2 5 8
1 2 5
6 1 2

回答1:


This was already covered in one of your previous questions. Although you aren't trying to create a square matrix in this example, you can still use the TOEPLITZ function like in Jonas' answer:

M = toeplitz(vector,[vector(1) 0 0]);


来源:https://stackoverflow.com/questions/3357075/how-can-i-create-a-matrix-using-vector-with-lag-using-matlab

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!