rotated
Method of ComplexMatrix.
rotated() -> ComplexMatrix
Returns a (counter-clockwise) rotated copy of the ComplexMatrix.
Example
var a = ComplexMatrix([[1,3],[2,4]])
// prints
// 1 2
// 3 4
a.rotated()
// prints
// 2 4
// 1 3