MATLAB: I want to create a array structure using one,zero,eye

eyematrix arrayoneszeroes

use the ones, zeroes, eye and addressing commands as appropriate to construct the matrix D, by using upto three lines of command.
3 0 0 2 2
0 3 0 2 2
0 0 3 0 0
Thanks in advance

Best Answer

D=[3*eye(3),[2*ones(2);zeros(1,2)]]
You can do it in one line as seen here.