Displaying 1 result from an estimated 1 matches for "78720219".
2008 Mar 24
1
Cannot allocate large vectors (running out of memory?)
...131023877 999.7
> memory.limit()
[1] 1535.875
> n <- 8640 * 4320
> x=rep(1/3, n)
> memory.size()
[1] 578.8543
> gc()
used (Mb) gc trigger (Mb) max used (Mb)
Ncells 143471 3.9 350000 9.4 350000 9.4
Vcells 37413375 285.5 78720219 600.6 131023877 999.7
> y=rep(1/7, n)
Error: cannot allocate vector of size 284.8 Mb
> memory.size()
[1] 578.8543
> gc()
used (Mb) gc trigger (Mb) max used (Mb)
Ncells 143471 3.9 350000 9.4 350000 9.4
Vcells 37413375 285.5 78720219 60...