Greetings list, In my code, I have a few small functions that are called very very frequently. An example of one such function is the following :
sigmoid<-function(x) 1/(1+exp(-x)) Now, is there anyway to make this go faster? For example, in C++ we could make it inline. Is there a corresponding feature in R? Cheers, Wee-Jin ______________________________________________ [email protected] mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.
