What is the problem
Given a Matrix
(by convention, is always a columns matrix)
Find its transposed rows matrix.
Strategy
Starting from the farthest/rightmost vector:
- Rotate it anti-clockwise
(Do the same for the next vector, and then the one after it (moving to the left), but raise each one a bit after rotation) - (…)
- ()
- ()
- Finally, Squish them all into a row vector.