Ask Your Question

NONAME's profile - activity

2022-12-02 21:27:43 +0100 received badge  Famous Question (source)
2019-04-30 07:05:27 +0100 received badge  Notable Question (source)
2018-04-27 07:27:54 +0100 received badge  Good Question (source)
2018-04-27 07:22:31 +0100 received badge  Popular Question (source)
2017-11-24 10:59:32 +0100 received badge  Nice Question (source)
2015-02-25 11:09:34 +0100 received badge  Student (source)
2015-02-24 15:30:07 +0100 asked a question reverse a matrix

We can count backwards to flip a matrix A upside down with

sage: A[::-1,:]=A; A

Can we do it from left to right; I mean, for the matrix A=

[ 3  2 -5  0]
[ 1 -1  1 -4]
[ 1  0  1 -3]

Is there an easy way to obtain the following matrix

[ 0 -5  2  3]
[-4  1 -1  1]
[ 3  1  0  1]