ordinate a sequences of number
- From: gambato@xxxxxxxxxxxx
- Date: 29 Oct 2005 07:06:43 -0700
hi!!
I need to ordinate a lot of number in a growing way. I tryed to write
this program but it doesn't work ....what is wrong?
Can you help me?Thank you very much!
C.
c**************************************************
PROGRAM ORD
c**************************************************
c
integer n
parameter (n=108000 )
real*8 fvx(n), fvy(n), fvz(n)
real*8 pos(n)
c
open (unit=11, file='fv900')
do 10 i=1, (n-1)
read (11,*) fvx(i)
minx= fvx(i)
do 20 j=(i+1),n
if (fvx(j) .lt. minx) then
min= fvx(j)
end if
c write(*,*) min
20 continue
pos(i)=min
10 continue
close(unit=11)
RETURN
END
.
- Follow-Ups:
- Re: ordinate a sequences of number
- From: Gib Bogle
- Re: ordinate a sequences of number
- From: Michael Metcalf
- Re: ordinate a sequences of number
- From: Ron Shepard
- Re: ordinate a sequences of number
- Prev by Date: Re: PI
- Next by Date: Re: ordinate a sequences of number
- Previous by thread: Dynamic String Problem - Please help me Fast
- Next by thread: Re: ordinate a sequences of number
- Index(es):
Relevant Pages
|