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
Irena's suggest was to have options for the start and stop frequency to use when computing the fft. This could look something like:
import xapres_package as xa
ds = xa.load.generate_xarray(directory='../../data/sample/single_dat_file/',
start_freq = [300e6, 400e6],
stop_freq = [500e6])
and this would do all the processing twice, once with start_freq = 200e6 and once with start_freq = 400e6. There would then be another dimension in the resulting xarray: start_freq.
If yo ualso provide multiple stop_freq's it could do every combination of start_freq and stop_freq.
this should be possible using the new custom fft options that were added in #51 and a script I wrote for a different project (here), which allows you to loop over different parameter values and save the results in an xarray.
This wont result in a change to the code, I dont think, but I could add a notebook demonstrating it.
Irena's suggest was to have options for the start and stop frequency to use when computing the fft. This could look something like:
and this would do all the processing twice, once with
start_freq
= 200e6 and once withstart_freq
= 400e6. There would then be another dimension in the resulting xarray:start_freq
.If yo ualso provide multiple
stop_freq
's it could do every combination ofstart_freq
andstop_freq
.cc @glugeorge
The text was updated successfully, but these errors were encountered: