Re: [R] matlab style of storing arrays compared to R

2008-11-21 Thread Rainer M Krug
On Fri, Nov 21, 2008 at 6:12 PM, Douglas Bates <[EMAIL PROTECTED]> wrote: > R uses column-major ordering of multidimensional arrays, as in > Fortran, unlike the row-major ordering of C multidimensional arrays. > This is because the numerical linear algebra code used in R is from > the Eispack, Linp

Re: [R] matlab style of storing arrays compared to R

2008-11-21 Thread Douglas Bates
R uses column-major ordering of multidimensional arrays, as in Fortran, unlike the row-major ordering of C multidimensional arrays. This is because the numerical linear algebra code used in R is from the Eispack, Linpack, BLAS, Lapack family of Fortran subroutine packages. Even when implementation