58

我在 R 中有一个这样的矩阵:

|1|2|3|
|1|2|3|
|1|2|3|

有没有一种简单的方法可以将整个矩阵顺时针旋转 90 度以获得这些结果?

|1|1|1|
|2|2|2|
|3|3|3|

并再次旋转 90 度:

|3|2|1|
|3|2|1|
|3|2|1|

?

4

5 回答 5

105

t不旋转条目,它沿对角线翻转:

x <- matrix(1:9, 3)
x
##      [,1] [,2] [,3]
## [1,]    1    4    7
## [2,]    2    5    8
## [3,]    3    6    9

t(x)
##      [,1] [,2] [,3]
## [1,]    1    2    3
## [2,]    4    5    6
## [3,]    7    8    9

R矩阵顺时针旋转90度:

您还需要在转置之前反转列:

rotate <- function(x) t(apply(x, 2, rev))
rotate(x)
##      [,1] [,2] [,3]
## [1,]    3    2    1
## [2,]    6    5    4
## [3,]    9    8    7

rotate(rotate(x))
##      [,1] [,2] [,3]
## [1,]    9    6    3
## [2,]    8    5    2
## [3,]    7    4    1

rotate(rotate(rotate(x)))
##      [,1] [,2] [,3]
## [1,]    7    8    9
## [2,]    4    5    6
## [3,]    1    2    3

rotate(rotate(rotate(rotate(x))))
##      [,1] [,2] [,3]
## [1,]    1    4    7
## [2,]    2    5    8
## [3,]    3    6    9

R矩阵逆时针旋转90度:

在反向之前进行转置与逆时针旋转相同:

foo = matrix(1:9, 3)
foo
## [,1] [,2] [,3]
## [1,]    1    4    7
## [2,]    2    5    8
## [3,]    3    6    9

foo <- apply(t(foo),2,rev)
foo

## [,1] [,2] [,3]
## [1,]    7    8    9
## [2,]    4    5    6
## [3,]    1    2    3
于 2013-05-11T12:25:11.893 回答
31
m <- matrix(rep(1:3,each=3),3)

     [,1] [,2] [,3]
[1,]    1    2    3
[2,]    1    2    3
[3,]    1    2    3

t(m[nrow(m):1,])

     [,1] [,2] [,3]
[1,]    1    1    1
[2,]    2    2    2
[3,]    3    3    3

m[nrow(m):1,ncol(m):1]

     [,1] [,2] [,3]
[1,]    3    2    1
[2,]    3    2    1
[3,]    3    2    1

t(m)[ncol(m):1,]

     [,1] [,2] [,3]
[1,]    3    3    3
[2,]    2    2    2
[3,]    1    1    1
于 2013-05-11T10:43:35.070 回答
8

将矩阵旋转180°的简单方法是:

m <- matrix(1:8,ncol=4)
#      [,1] [,2] [,3] [,4]
# [1,]    1    3    5    7
# [2,]    2    4    6    8


rot <- function(x) "[<-"(x, , rev(x))

rot(m)
#      [,1] [,2] [,3] [,4]
# [1,]    8    6    4    2
# [2,]    7    5    3    1

rot(rot(m))
#      [,1] [,2] [,3] [,4]
# [1,]    1    3    5    7
# [2,]    2    4    6    8
于 2014-02-12T14:30:38.503 回答
3

R方法将矩阵旋转90度和-90度

#first reverse, then transpose, it's the same as rotate 90 degrees
rotate_clockwise         <- function(x) { t(     apply(x, 2, rev))}
#first transpose, then reverse, it's the same as rotate -90 degrees:
rotate_counter_clockwise <- function(x) { apply(     t(x),2, rev)}

#or if you want a library to help make things easier to read:
#install.packages("pracma")
library(pracma)
rotate_one_eighty <- function(x) { rot90(x, 2) }
rotate_two_seventy <- function(x) { rot90(x, -1) }

foo = matrix(1:9, 3)
foo

foo = rotate_clockwise(foo)
foo

foo = rotate_counter_clockwise(foo)
foo

foo = rotate_one_eighty(foo)
foo

印刷:

     [,1] [,2] [,3]
[1,]    1    4    7          #original matrix
[2,]    2    5    8
[3,]    3    6    9
     [,1] [,2] [,3]
[1,]    3    2    1
[2,]    6    5    4          #rotated 90 degrees
[3,]    9    8    7
     [,1] [,2] [,3]
[1,]    1    4    7
[2,]    2    5    8          #rotated -90 degrees
[3,]    3    6    9
     [,1] [,2] [,3]
[1,]    9    6    3
[2,]    8    5    2          #rotated 180 degrees
[3,]    7    4    1

请注意,顺时针旋转矩阵,然后逆时针将数字返回到它们的原始位置,然后旋转 180 就像旋转 90 两次一样。

于 2017-03-19T03:41:24.720 回答
0

或者组合成一个函数(基于 Eric Leschinski):

rotate  <- function(x, clockwise=T) {
  if (clockwise) { t( apply(x, 2, rev))
  } else {apply( t(x),2, rev)} 
}
于 2017-08-17T15:15:09.797 回答