简体   繁体   中英

Create a matrix from a vector in R

I have a vector v , and I would like to create the following matrix. How can I do this in R?

      v = c(1, 2, 3, 4)

      > m = matrix(c(1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4,4), nrow=4)
      > m
           [,1] [,2] [,3] [,4]
     [1,]    1    2    3    4
     [2,]    1    2    3    4
     [3,]    1    2    3    4
     [4,]    1    2    3    4

See ?matrix and the nrow , ncol , byrow arguments:

matrix(v, nrow=4, ncol=4, byrow=TRUE)
#     [,1] [,2] [,3] [,4]
#[1,]    1    2    3    4
#[2,]    1    2    3    4
#[3,]    1    2    3    4
#[4,]    1    2    3    4

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM