-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use ragged arrays for alms #487
Comments
See also #382. |
Is s2fft already using ragged arrays from some package right now? I could not find anything relevant. Their paper says -
but I am not sure where the ragged array (that they want to feed in |
You can see here the format s2fft uses to store their alms: This is always for complex fields, so there are negative We would continue to use pairs of Representing this as a ragged array makes it very easy to apply functions of The only major issue here is that |
I see, thanks! I did notice this format, but the indexing looked very different from the one in GLASS, so I was skeptical.
I am not very sure how this is to be implemented but I am expecting that the alms should start looking like gls in the function arguments - gls = [gl_00,
gl_11, gl_10,
gl_22, gl_21, gl_20,
...] but yes, it will become more clear once I have a quick meet with you after FOSDEM. |
Add your issue here
Inspired by s2fft, I think it would be great to use ragged$\ell = 0, \ldots, \ell_{\max}$ , the second axis would be ragged with $m = 0, \ldots, \ell$ .
alm
arrays. The first axis would beThe text was updated successfully, but these errors were encountered: