REvolution for R
问题 since the latest Ubuntu release (karmic koala), I noticed that the internal R package advertises on start-up the REvolution package. It seems to be a library collection for high-performance matrix calculations. And it seems to really work, apparently. For example on a matrix transposition with REvolution: > system.time(t(matrix(rnorm(10000000),ncol=1000))) user system elapsed 1.280 0.150 1.556 And without REvolution: > system.time(t(matrix(rnorm(10000000),ncol=1000))) user system elapsed 1