Nothing
swan <-
function (x, maxit = Inf)
{
zeros <- -Inf
iter <- 0
while(zeros != (zeros <- sum(x == 0)) && any(x == 0) &&
iter < maxit) {
x[x > 0] <- x[x > 0] - min(x[x > 0]) + 1
x[x == 0] <- beals(x)[x == 0]
iter <- iter + 1
}
x
}
### (Ecology 51, 89-102; 1970).
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.