我有一个简单的C ++文件读取程序:
C:\Test11.txt
Hello
的文件内容为ios_base::failbit
。
该程序能够读取内容但失败,异常为while (!(file.eof()))
。在评估ones <- t(rep(1, 4))
lst_Mat <- list(1:6 %*% ones, 7:11 %*% ones, 12:21 %*% ones, 22:26 %*% ones)
combs <- expand.grid( sapply(lst_Mat, function(x) 1:nrow(x)) )
nbcombs <- nrow(combs)
res <- NULL
for (i in 1:nbcombs)
res[[i]] <- t(mapply(function(mat,line) mat[line,], lst_Mat, combs[i, ]))
时似乎有问题。
出了什么问题?