search for: my_function_

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

Did you mean: my_function
2001 Sep 05
0
Re: [S] dyn.load
...> .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 Because the symbol being looked for is "my_function_". You are mis-using is.loaded, in both R and S-PLUS: Functions `symbol.C' and `symbol.For' map function or subroutine names to the symbol name in the compiled code: `is.loaded' checks if the symbol name is loaded and hence available for use in `.C' or `.Fo...