Re: [Rd] Which programming paradigm is the most used for make R packages?

2007-01-04 Thread Ricardo Rios
this information in my thesis. On 1/3/07, Ross Boylan <[EMAIL PROTECTED]> wrote: > On Wed, Jan 03, 2007 at 11:46:16AM -0600, Ricardo Rios wrote: > > Hi wizards, does somebody know Which programming paradigm is the most > > used for make R packages ? Thanks in advance. > >

[Rd] Which programming paradigm is the most used for make R packages?

2007-01-03 Thread Ricardo Rios
Hi wizards, does somebody know Which programming paradigm is the most used for make R packages ? Thanks in advance. -- personal web site: http://www.geocities.com/ricardo_rios_sv/index.html __ R-devel@r-project.org mailing list https://stat.ethz.ch/ma

[Rd] Calling R function from C

2006-11-26 Thread Ricardo Rios
Hi wizards, I have the following function, I call R function from C. I execute this commands > dyn.load("difficult.so"); > out <- .Call("difficult"); $mean [1] 0.65 $median [1] 0.65 However I would like to call difficult.R but in C , how in the following code: > pch <- array(dim=c(2,1)); > pc

[Rd] How can I call a function R from C

2006-11-22 Thread Ricardo Rios
Hi wizards, I have a function in R for example: anyfunction<-function(beta0, popsize, maxgen), but I have a function in C for example: SEXP otherfunction(SEXP beta0, SEXP popsize, SEXP maxgen) I call it function with .Call but I need to call to anyfunction on otherfunction. Does somebody know