Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The piece of R code given below is meant to perform calculations for many files(12) in one folder.But I am getting this error:Error: subscript out of bounds.It finished reading the first file but the error arose when it started to read the next file. any suggestion why?.

                 library(Matrix)
                  setwd("C:\\Users\\aalyaari\\Desktop\\img")
                    listfile<-dir()
          long <- file("C:\\Users\\aalyaari\\Desktop\\New folder (5)\\inra.bin", "rb")
             A=readBin(long, integer(), size=2,n=67420*1, signed=F)
                   ta<-t(A)
               lot <- file("C:\\Users\\aalyaari\\Desktop\\New folder (5)\\lat.img", "rb")
          B=readBin(lot, integer(), size=2,n=67420*1, signed=F)
              tb<-t(B)

         for (n in 1:length(listfile))
               {

                       h=listfile[n]
                       b=file.info(h[n])$size/67420/4

 wind <- file(h, "rb")
 C=readBin(wind, double(), size=4,n=67420*b, signed=TRUE)

 D<-matrix(C,nrow=b,ncol=67420)

for(d in 1:b)
 {
     M <- Matrix(-9999, 360, 720)
       tm<-t(M)
     for(i in 1:67420)
     {
        tm[ta[i],tb[i]]= round(10 * ((D[(d-1)*8+1,i] + D[(d-1)*8+2,i] +D[(d-1)*8+3,i] +D[(d-1)*8+4,i] +D[(d-1)*8+5,i] +D[(d-1)*8+6,i] +D[(d-1)*8+7,i] +D[(d-1)*8+8,i] ) / 8))

     }###gooooooood
     to.write <- sprintf("C:\\Users\\aalyaari\\Desktop\\New folder (6)\\Yar_%00d.bin", d)
     writeBin(as.integer(tm@x), size=2,to.write)
 }

}

share|improve this question
2  
You should put some time into capitalizing the beginnings of sentences, putting spaces after periods and spelling. I got tired after the 10th grammatical error. The human brain can only handle so much lexical noise. – DWin Apr 25 '12 at 22:17
Please pare down the data to the point where it can be created in your example. Other than that, it appears that you want to write to M, using row and columns taken from A and B, with values from C. It appears that C is a lot longer than A or B, so only the first 67420 elements of C are used in your loop. – Matthew Lundberg Apr 26 '12 at 1:13
In addition, it pains me to see the definition of "wind" and "C" each time through the loop. Move these definitions to the outside of the "for" loop. – Matthew Lundberg Apr 26 '12 at 1:15
sorry it is my bad English.I did my best to write it better.Matthew, you r right, c is a lot longer than A and B and this loop will write to M ,using rows and columns taken from A and B,with values from C.So how can I improve it to take then the next 67420 and write it to new file and so on till the 248th 67420. Many thanks for both of you – Sami Yemein Apr 26 '12 at 7:16
1  
Million thanks once again for corrections – Sami Yemein Apr 26 '12 at 7:32
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.