Re: [R] Saving a 3d array into a matlab file

2008-11-01 Thread Henrik Bengtsson
Hi, a follow up on this: I've fixed the below bug in writeMat(). R.matlab v1.2.4 is now available on CRAN. Please update. Henrik On Tue, Oct 28, 2008 at 3:30 PM, Henrik Bengtsson <[EMAIL PROTECTED]> wrote: > Hi, > > On Tue, Oct 28, 2008 at 2:25 PM, Minho Chae <[EMAIL PROTECTED]> wrote: >> Dear

Re: [R] Saving a 3d array into a matlab file

2008-10-28 Thread Henrik Bengtsson
Hi, On Tue, Oct 28, 2008 at 2:25 PM, Minho Chae <[EMAIL PROTECTED]> wrote: > Dear R users, > > I am tryting to save an 3d array to a matlab file like the following. > > A <- array(1:24, c(2,3,4)) > writeMat(filename, A=A) > > But if I load the mat file from Matlab, it is not 3d matrix anymore. > D

[R] Saving a 3d array into a matlab file

2008-10-28 Thread Minho Chae
Dear R users, I am tryting to save an 3d array to a matlab file like the following. A <- array(1:24, c(2,3,4)) writeMat(filename, A=A) But if I load the mat file from Matlab, it is not 3d matrix anymore. Does anyone know how I can preserve the 3d structure? Any help will be greatly appreciated.