I'm working on one of my course projects, and I need a matrix of nxn, where the first pxp of it contains ones and rest are zeros. I can do it with traversing the cells, so I'm not asking a way to do it. I'm looking for the "MATLAB" way to do it, using build in functions and avoiding loops etc.
To be more clear,
let n=4 and p=2,
then the output must be:
1 1 0 0
1 1 0 0
0 0 0 0
0 0 0 0
I know there are possibly more than one elegant solution to do it, so I will accept the answer with the shortest and most readable one. The question title looks a bit irrevelant, but I thought that the best strategy is to create pxp ones matrix, then expanding it to nxn with zeros.