Prof Brian Ripley wrote:
> It's a bug -- unlike is.loaded, getNativeSymbolInfo seems unaware of
> Fortran names unless registered.
>
> Will be fixed in 2.7.0.
>
> On Wed, 9 Apr 2008, [EMAIL PROTECTED] wrote:
>
>>
>> In the following code routine 'initaquaphy' is defined in Fortran,
>> and dynam
It's a bug -- unlike is.loaded, getNativeSymbolInfo seems unaware of
Fortran names unless registered.
Will be fixed in 2.7.0.
On Wed, 9 Apr 2008, [EMAIL PROTECTED] wrote:
>
>
> In the following code routine 'initaquaphy' is defined in Fortran,
> and dynamically loaded into R.:
>
> test.f:
>
>
>
In the following code routine 'initaquaphy' is defined in Fortran,
and dynamically loaded into R.:
test.f:
subroutine initaquaphy(odeparms)
external odeparms
double precision pars(19)
common /myparms/pars
call odeparms(19, pars)
return
end
$ R CMD