|
Dear s-users,
I need to translate a function of Splus in to R.
The function calls a DLL library using the instruction dll.load. In R exists the
function 'dyn.load' and I get the following results
>
dyn.load("c:/windows/system/my_function.dll")
> is.loaded("my_function")
[1] TRUE
but I have problems when I use the
'.Fortran' function. I get the following message:
>
.Fortran("my_function",.....)
Error in .Fortran("my_function") : C/Fortran function name not in load
table
( where ,.... are the parameters of
my_function )
I would like to know why it doesn't
work
Thank you,
Juan Ramon
|