Open randy3k opened 10 years ago
It has been on my rpy2 for quite a long time but:
I am not saying that it will not happen, just that I am unsure about when it will (pull requests helping with it would be reviewed attentively though)
perhaps, it is limited by the memory management of R.
Currently, It seems that
v_r = RArray{Float64, 1}(v)
deep copy the content ofv
tov_r
. For the sake of speed and memory storage, there should be methods to constructv_r
which points to the same memory ofv
.