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:

  1. 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)
  2. (…)
  3. ()
  4. ()
  5. Finally, Squish them all into a row vector.

Connections