FUNC <- function(i){
var <- i
dist <- sapply(1:(i-1),function(x){list[[x]]*co[var,x]})
mean <- sapply(1:(i-1),FUN2)
block <- t(co[i,i]*list[[i]])+rowSums(mean)
new_list[[i]] <- t(block)
}
When I specify i=4, or i=10, and run the code inside the function definition line by line, it totally works and assigns new_list[[i]] the value of t(block).
however, when I do
FUNC(4) or FUNC(10)
It returns the error message
Error in dist[[x]] : subscript out of bounds
Does anyone have any idea why it wouldn't work with a function call? Thank you!!
Error in list[[x]] : object of type 'builtin' is not subsettableerror when trying to run your code asFUNC(4). – Chase Dec 6 '11 at 22:02cois, whatFUN2is, and where and hownew_listis defined.... – Josh O'Brien Dec 6 '11 at 22:03