Viewing contents of file '../idllib/contrib/tappin/graffer/gr_flt_rd.pro'
function Gr_flt_rd, iunit, nvals

;+
; GR_FLT_RD
;	Read float value(s) from a binary GRAFFER file
;
; Usage:
;	val = gr_flt_rd(ilu, nvals)
;
; Return value:
;	val	float	The required float
;
; Arguments:
;	iunit	int	input	The IDL file unit number
;	nvals	int	input	How many?
;
; History:
;	Original: 15/1/96; SJT
;	Made unique in 8.3: 11/2/97; SJT
;-

if (nvals eq 1) then val = 0. $
else val = fltarr(nvals)

readu, iunit, val

return, val

end