Concept Flow - Matrix transpose
Start with matrix A
Read element A(i,j)
Place element at position B(j,i)
Repeat for all i,j
Result: matrix B is transpose of A
The process reads each element of the original matrix and places it in the flipped position to create the transpose.