I am trying to load into R a MATLAB format file (actually, as saved by
octave). The file is about 300kB but R complains with a memory
allocation error:
library(Rcompression)
library(R.matlab)
Loading required package: R.oo
Loading required package: R.methodsS3
R.methodsS3 v1.2.0 (2010-03-13) successfully loaded. See ?R.methodsS3 for help.
R.oo v1.7.2 (2010-04-13) successfully loaded. See ?R.oo for help.
R.matlab v1.3.1 (2010-04-20) successfully loaded. See ?R.matlab for help.
Error: cannot allocate vector of size 296.5 Mb
On the other hand, if I save the same data in ascii format (from
octave: "save -text"), resulting in a 75MB file, then I can load it
without problems with the read.octave() function from package foreign.
Is this a known issue or am I doing something wrong? My R version is: