Concept Flow - Matrix transpose operations
Start with matrix A
Access elements by rows and columns
Swap rows with columns
Create new matrix A^T with swapped indices
Output transposed matrix
Transpose flips a matrix over its diagonal, swapping rows and columns to create a new matrix.