Re: [R] how to write a periodic function in R?

2005-07-25 Thread Prof Brian Ripley
On Mon, 25 Jul 2005 [EMAIL PROTECTED] wrote: > My question is how to write a periodic function in R. > for example if there is a function f(x) that > f(x)=f(x+4), for -2 how to write it in R? f((x+2)%%4 - 2) is one way. -- Brian D. Ripley, [EMAIL PROTECTED] Professor of Appli

Re: [R] how to write a periodic function in R?

2005-07-25 Thread Duncan Murdoch
On 7/25/2005 11:22 AM, [EMAIL PROTECTED] wrote: > My question is how to write a periodic function in R. > for example if there is a function f(x) that > f(x)=f(x+4), for -2 how to write it in R? > thanks a lot! Just write a function that does that, e.g. f <- function(x) (x + 2) %% 4 - 2 The %%

[R] how to write a periodic function in R?

2005-07-25 Thread lma5
My question is how to write a periodic function in R. for example if there is a function f(x) that f(x)=f(x+4), for -2https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html