lgautier / Rif.jl

Julia-to-R interface
GNU General Public License v2.0
54 stars 25 forks source link

Fixed 2D vector conversion by switching ndims() to size() and updated README #26

Closed slundberg closed 10 years ago

slundberg commented 10 years ago

In reference to #25 ndims() just returns how many dimensions are present in the array, while the code expects to actually get those dimensions, which means it didn't work until I replaced ndims() with size(). Also updated the README to reflect actual use of a 2D matrix.

lgautier commented 10 years ago

Makes sense. Unit test s are much needed.