Hi,
I am relatively new to Fortran and havce a piece of code from smeone which I am not abe to fully follow;
dimension x(3,),y(3,) character*70 check
undef = -1.0d30
icount = 0
do i = 1 , nav
if(scr(3,i) .ne. undef) then
icount = icount + 1
x(1,icount) = y(1,i)
x(2,icount) = y(2,i)
x(3,icount) = y(3,i)
endif
if(x(3,i).eq.undef)then
call something()
endif
enddo
Please can anyone help?
What is undef here? Is it a FORTRAN keyword?
Please help--