Displaying 1 result from an estimated 1 matches for "garemin".
2002 Oct 02
2
.C() and C++ name mangling
Howdy,
I'm working with some external code written in C++, which I
would like to call via dyn.load() and .C() from R. The
function prototype looks like:
gaRemin(int *, float *, float *, int *, float *, float *,
float *, float *, float *)
but to call this function from R using .C() I have had to use
the mangled version of this function name,
gaRemin__FPiPfT1T0T1N41
Is using the mangled name my best option,...