Hello again,
I was wondering if sb knows how can i calculate the max value of an array. This is what I mean:
IF(U(I+1,J).LE.UMEAN(I+1)) then
YUHALF(I+1)=(J-2)*DY+((Y(J)-Y(J-1))/(U(I+1,J)-U(I+1,J-1)))*(UMEAN(I+1)-U(I+1,J-1))
write(*,*) 'i=',i+1,'j=',j,'yuhalf=',yuhalf(I+1)
end if
I have...