search for: sobol_

Displaying 5 results from an estimated 5 matches for "sobol_".

Did you mean: sobol
2017 May 09
2
registering Fortran routines in R packages
...t the following code will do the job: static const R_FortranMethodDef FortEntries[] = { {"halton", (DL_FUNC) &F77_NAME(HALTON), 7}, {"sobol", (DL_FUNC) &F77_NAME(SOBOL), 11}, {NULL, NULL, 0} }; But I got error messages when building : use of undeclared identifier ?SOBOL_?. I also tried in lower case sobol and halton. Looking at expm package https://r-forge.r-project.org/scm/viewvc.php/pkg/src/init.c?view=markup&revision=94&root=expm, I try static const R_FortranMethodDef FortEntries[] = { {"halton", (DL_FUNC) &F77_SUB(HALTON), 7}, {&quo...
2006 Mar 31
1
Fortran and C entry point problem.
...bdas[1], lambdas[2], lambdas[3], lambdas[4], : C entry point "gl_fmkl_distfunc" not in DLL for package "mypackage" > runif.sobol(10,5) Error in .Fortran("sobol", as.double(qn), as.integer(n), as.integer(dimension), : Fortran entry point "sobol_" not in DLL for package "mypackage" Alternatively running C CMD check mypackage will also pick up these errors when they try to run the examples. I have used Fortran and C codes already available on CRAN so I am unsure what is the missing link to make these work? Can a...
2006 Mar 31
1
Fortran and C entry point problem.
...bdas[1], lambdas[2], lambdas[3], lambdas[4], : C entry point "gl_fmkl_distfunc" not in DLL for package "mypackage" > runif.sobol(10,5) Error in .Fortran("sobol", as.double(qn), as.integer(n), as.integer(dimension), : Fortran entry point "sobol_" not in DLL for package "mypackage" Alternatively running C CMD check mypackage will also pick up these errors when they try to run the examples. I have used Fortran and C codes already available on CRAN so I am unsure what is the missing link to make these work? Can a...
2017 May 09
0
registering Fortran routines in R packages
...> > static const R_FortranMethodDef FortEntries[] = { > {"halton", (DL_FUNC) &F77_NAME(HALTON), 7}, > {"sobol", (DL_FUNC) &F77_NAME(SOBOL), 11}, > {NULL, NULL, 0} > }; > > But I got error messages when building : use of undeclared identifier ?SOBOL_?. I also tried in lower case sobol and halton. > > Looking at expm package https://r-forge.r-project.org/scm/viewvc.php/pkg/src/init.c?view=markup&revision=94&root=expm, I try > > static const R_FortranMethodDef FortEntries[] = { > {"halton", (DL_FUNC) &F77_...
2017 May 10
3
registering Fortran routines in R packages
...R_FortranMethodDef FortEntries[] = { >> {"halton", (DL_FUNC) &F77_NAME(HALTON), 7}, >> {"sobol", (DL_FUNC) &F77_NAME(SOBOL), 11}, >> {NULL, NULL, 0} >> }; >> >> But I got error messages when building : use of undeclared identifier ?SOBOL_?. I also tried in lower case sobol and halton. >> >> Looking at expm package https://r-forge.r-project.org/scm/viewvc.php/pkg/src/init.c?view=markup&revision=94&root=expm, I try >> >> static const R_FortranMethodDef FortEntries[] = { >> {"halton",...