3
2
227
0
``` mat <- matrix(1:20,4,5) array <- array(1:20, c(2,3,4)) ###dim=c(2,3,...
c()与paste()的区别 c()函数: 将括号中的元素连接起来,并不创建向量paste()函数: 连接括号中的元素 例如,c(1, 2:4)...