0
我正在使用雙循環來填充矩陣使用以下代碼。使用雙循環填充矩陣R
mat<-matrix(NA, nrow=2, ncol=2)
for (i in 1:2){
for (j in 3:4){
mat[i,j]<-c(i,j)
}
}
mat
我得到的錯誤是:
Error in '[<-'('*tmp*', i, j, value = c(3L, 1L)) :
subscript out of bounds
我在做什麼錯?
謝謝你的回答。這解釋了很多。我試圖用expand.grid(1:2,3:4)來完成,但不恰當的做法。 – Alph 2014-09-05 16:22:43