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
Thanks for the comment @mariogeiger ! This is indeed not supported at present since we assume the signal is sampled at resolution L corresponding to the bandlimit. All harmonic coefficients < L are then computed. While with MW sampling you are getting the right shape, I'm not sure the correct values are computed.
The simplest way to support your use case is to compute all harmonic coefficients and simply discard those for $L_\text{ouput} \leq \ell < L_\text{signal}$. Of course this would not be the most efficient. How frequently do you need to do transforms in this manner? If just a one-off (e.g. to downsample your data), I would recommend this approach. But if you need to do this many times then the performance hit will be substantial.
If you could provide a little further detail about your use case and how you considered this previously with DH sampling then we can explore implementing this in s2fft.
Hi,
Would it be possible to compute only the low frequencies from a high resolution grid?
It seems to work with
sampling = "mw"
but not withsampling = "dh"
:Maybe I should just use
sampling = "mw"
but my old code was usingsampling = "dh"
and I wanted to compare.The text was updated successfully, but these errors were encountered: