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