If you are given any arbitrary function f(x), how is it possible to make it circular with a period of n, writing the function explicitly?
The function would be: $$f(x_{2\space periodic})= \begin{equation} \begin{cases} &f(x), x<n\\ &f(x-n),n<x<2n\\ &f(x-2n), 2n< x < 3n\\ &... \end{cases} \end{equation} $$
But to write it explicitly in terms of x is a bit more difficult. Using the Fourier Transform would work, but is not something I want to employ (for one given that I am working on a computer problem). Are there any simple ways to make function repeat itself, especially if the domain is limited?
a%bgiving the remainder of $a$ when divided by $b$ basically does all this for you as $f(x)=f(x%n)$) – Milo Brandt Aug 16 '16 at 04:19