search for: vdatai

Displaying 1 result from an estimated 1 matches for "vdatai".

Did you mean: vdata
2009 Sep 20
1
Return a list from a .Call but segfaults
Hello, I call a function via .Call passing to it a raw vector(D) and an integer(I) The vector is a series K1,KData1, V1,VData1, K2, KData2, ... where the integer K1 is the length of Data1 and similarly for Ki (wrt Datai)(similarly for V*) There 2*I such pairs( (Ki,KDatai), (Vi,VDatai)) The numbers Ki(and Vi) are written in network order. I am returning a list of I elements each element a list of two elements corresponding to KData and VData (which are serialized R objects) . ll <- .Call("returnListOfKV", rawkv, numread) When use the function with browser(...