Closed texadactyl closed 3 years ago
Setigen creates a 2-dimensional data array. Hyperseti dedoppler requires a 3-dimensional array.
Suggestion: save the setigen frame.data to a filterbank file instead of attempting to access it directly. That works in turbo_seti quite well. E.g.
frame.save_fil(filename=outpath) d = from_fil(outpath)
frame.save_fil(filename=outpath)
d = from_fil(outpath)
frame.save_h5(filename=outpath) d = from_h5(outpath)
frame.save_h5(filename=outpath)
d = from_h5(outpath)
Setigen creates a 2-dimensional data array. Hyperseti dedoppler requires a 3-dimensional array.
Suggestion: save the setigen frame.data to a filterbank file instead of attempting to access it directly. That works in turbo_seti quite well. E.g.
frame.save_fil(filename=outpath)
d = from_fil(outpath)
frame.save_h5(filename=outpath)
d = from_h5(outpath)