C+ C NAME: C iArrR4ValuePresent C PURPOSE: C Check real*4 array for presence of given value C CALLING SEQUENCE: function iArrR4ValuePresent(N,A,APresent) C SEE ALSO: C Array_Info C- integer N real A(*) real APresent NP = 0 do I=1,N if (A(I) .eq. APresent) NP = NP+1 end do iArrR4ValuePresent = NP return end