Is there some way to vectorize the following?
# x: some vector
# index: some vector of indeces
n <- length(index)
y <- rep(NA, n)
for (i in 1:n) {
y[i] = myfunction(x[1:index[i])
}
Basically, I'd like to apply myfunction to various subsets of the vector x. It doesn't seem like the apply functions are built to handle this.