Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: acharls
  • Content: Threads
  • Order by date
  1. acharls

    doubt

    Hi all, I have some difficulty in processing a data. I have 3 files each file has data(100x1). while processing I derived 5 variables from data(100x1). ie a(2,10),b(2,10),c(2,10)... Then I tried to sort each 10 values. my sorting subroutine take 1-D array (x(n)), so here I saved each 10 data...
  2. acharls

    sorting

    Hi all, I have a sorting program do i=1,4 do j=i+1,5 if(er(i).gt.er(j))then temp=er(i) er(i)=er(j) er(j)=temp end if end do end do I am looking how I can print sorted values with their array index as in original data. example er=[9,3,2,5,1,4] sorted...
  3. acharls

    help

    Hi all, I have two files 111 112 113 111 114 & 115 115 116 117 117 118 I wanted to compare each value from file 1 with all values in file 2 and write the outputs if file1(i)+3==file2. my code is open(11,file='f1') i=1 32 read(11,*,end=98)file1(i) open (12,file='f2') 31...
  4. acharls

    average

    hi, I have a data a 10 b 11 c 19 b 12 e 44 c 76 g 23 a 88 g 12 p 34 p 34 .. .. .. .. I need to find average of all a,b,c,....etc. thanks in advance

Part and Inventory Search

Back
Top