Abstract: In this paper, an active reconfigurable generalized sequential rotation array (R-GSRA) supporting independent dual-circularly polarized (dual-CP) beam scanning as well as simultaneous ...
# Rotate a square matrix by 90 degrees counter-clockwise about its center. # TODO Use a matrix instead of a two-dimensional list. for col in xrange(n/2): for row in xrange(col, n - col - 1): temp1 = m ...