How to insert a smaller diagonal into a Matrix?

I'm struggling to generate a matrix M=[0 0 1 0 0; 0 0 0 1 0; 0 0 0 0 1; 0 0 0 0 0; 0 0 0 0 0], quickly without entering each entry by hand. I gather there is a quicker way.
I know I can create the 5x5 identity matrix using M=eye(5) but am unsure how to move the diagonal of 1s across 2. Any help would be appreciated

 采纳的回答

Monkeyman - try using diag as
D = diag([1 1 1],2)

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Operating on Diagonal Matrices 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by