Hmmmmm... If you are just looking for a "trick", perhaps the following line will suit your taste :-)
sage: m = Matrix([[1,2,3],[4,5,6]]) sage: m [1 2 3] [4 5 6] sage: m2 = Matrix(map(list,map(reversed,m.rows()))) sage: m2 [3 2 1] [6 5 4] I hope there is another solution though, as this requires to copy the whole matrix O_o Nathann -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-support URL: http://www.sagemath.org