Hi. How can I resolve this irlba error? When nv > 40 it always fail. Re-installing the irlba via install_github("bwlewis/irlba", force = TRUE) also did not change anything.
library(irlba)
mat <- matrix(data = rnorm(n = 3000*2000), nrow = 3000, ncol = 2000)
test <- irlba(mat, nv = 50)
test <- irlba(mat, nv = 40)
test <- irlba(mat, nv = 30)
