Re: [Rcpp-devel] R.e. Using Rcpp and MATLAB MAT-File API to Read MAT Files

2015-03-26 Thread Elliot Joel Bernstein
win64/microsoft, but the correct one is C:/MATLAB2013a/bin/win64. (Where "C:/MATLAB2013a" should be replaced by the root of your MATLAB installation.) - Elliot On Wed, Mar 25, 2015 at 12:57 PM, Elliot Joel Bernstein wrote: > John - > > One quick follow-up about the warnings: I th

Re: [Rcpp-devel] R.e. Using Rcpp and MATLAB MAT-File API to Read MAT Files

2015-03-25 Thread Elliot Joel Bernstein
round that? I think all the cell arrays being saved contain only strings, so I can change things in MATLAB to save them as char arrays if necessary. Thanks. - Elliot On Wed, Mar 25, 2015 at 12:26 PM, Elliot Joel Bernstein wrote: > John - > > Thanks for the suggestions. I tried taking not

Re: [Rcpp-devel] R.e. Using Rcpp and MATLAB MAT-File API to Read MAT Files

2015-03-25 Thread Elliot Joel Bernstein
is issue and access them using rhdf5: > > source("http://bioconductor.org/biocLite.R";) > biocLite("rhdf5") > library(rhdf5) > h5dump("file.mat", load=FALSE) > > John > > From: rcpp-devel-boun...@lists.r-forge.r-project.org [mailto: > rc

Re: [Rcpp-devel] R.e. Using Rcpp and MATLAB MAT-File API to Read MAT Files

2015-03-25 Thread Elliot Joel Bernstein
Dale - Thank you for the suggestion. I have MATLAB and the MATLAB libraries, and I am not looking to redistribute anything. I just have a lot of data in MAT files that I would like to be able to load analyze in R. I am able to compile and link against the MATLAB libraries, but the code crashes whe

[Rcpp-devel] Using Rcpp and MATLAB MAT-File API to Read MAT Files

2015-03-24 Thread Elliot Joel Bernstein
I'm trying to use the MATLAB Mat-File API to read data from MAT files into R. (I've tried using the R.matlab package, but the matrices I'm loading can be very large, and that method was too slow. In addition, some of the files I'm loading are v7.3 MAT files, which are not supported by the package.)