Is there a particular name given to a matrix of m rows and n columns such that it must have one and only one 1 in each row and 0 elsewhere? For instance:
0 1 0 0 0 0 0
0 0 0 0 1 0 0
0 1 0 0 0 0 0
0 0 0 0 0 0 1
0 0 1 0 0 0 0
Note: It may or may not be a square matrix.
I'm not aware of a common name for this type of matrix. However, a nice way to describe it is that the rows of your matrix are rows of the identity matrix with possible repetition.