R has fold function Reduce. is there a corresponding unfold function? say, given a starting value and apply a function recursively to get an array? The for loop will do the job, just wondering if there is more R-like way for this. thanks,
An example, the code below plot lorenz attractor in 8 lines (mimic F# Lorenz Attractor in 35 lines. But the for loop looks ugly. Can we do better?
s <- 10; b <- 8/3; p <- 28
dt <- 0.003; n<-2000
x <- matrix(0,n,3); x[1,] <- c(10,0,20)
for (i in 2:n){
x[i,] <- x[i-1,] + c(s * (x[i-1,2] - x[i-1,1]),x[i-1,1] * (p - x[i-1,3]) - x[i-1,2],x[i-1,1] * x[i-1,2] - b * x[i-1,3]) * dt
}
library(rgl)
plot3d(x,type= 'l',col = 'red')