You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
;; converts 300meter data to 30meter data?? ;; in = 300m data file;; out = new 30m data file;; ns= input n samples;; nl= input n lines;; nb= n bandspro conv300to30, in, out, ns, nl, nbopenr, un, /get, inopenw, oun, /get, outdata=fltarr(ns);rebin and could probably make this process MUCH fasterfor i=0, nb-1 do beginfor j=0, nl-1 do begin readu, un, data for m=0, 9 do begin ;; write the same line 10 times for k=0, ns-1 do begin for l=0, 9 do begin ;; write the same sample 10 times writeu, oun, data(k) endfor endfor endforendforendforclose, oun, unfree_lun, oun, unend