Displaying 1 result from an estimated 1 matches for "ksarray".
Did you mean:
nsarray
2011 Dec 29
3
Array element is function of its position in the array
...sfunction", and the array dimensions nis,njs,nks. I can
do this using a loop as follows:
# Loop version:
Vnew<-array(NA,c(nis,njs,nks)
for(i1 in 1:nis)for(j1 in 1:njs)for(k1 in
1:nks)Vnew[i1,j1,k1]<-Vold[i1,k1,ksfunction(i1,j1,k1)]
I already know how to create an array of the ks's:
ksarray[i,j,k]=ksfunction(i,j,k) # I have the array ksarray ready
I don't want a loop because nis,njs, and nks are pretty large and it takes
forever.
Would appreciate help with this issue.
[[alternative HTML version deleted]]