Re: [Rcpp-devel] Integration between Rcpp and Fortran

2013-11-29 Thread Dirk Eddelbuettel
On 28 November 2013 at 10:10, Fábio Corrêa wrote: | I`m use Fortran code for MCMC process. What I would like is to use the | Rcpp code within the subroutines in Fortran. | | For example? | | | subroutine TEST (x, y, z) | | ! Call function in Rcpp within Fortran | CALL function.Rcpp (a,b,c,) |

[Rcpp-devel] Integration between Rcpp and Fortran

2013-11-28 Thread Fábio Corrêa
Dears, I`m use Fortran code for MCMC process. What I would like is to use the Rcpp code within the subroutines in Fortran. For example? subroutine TEST (x, y, z) ! Call function in Rcpp within Fortran CALL function.Rcpp (a,b,c,) end subroutine TEST Is this possible? Is there any manual sett