S2kit
1.1
Toolkit for working with functions defined on the sphere
|
Contains the function that generates the weights for a Legendre transform. More...
Go to the source code of this file.
Functions | |
void | GenerateWeightsForDLT (const int bw, double *weights) |
Generates weights for both even and odd order Legendre transforms for a given bandwidth. More... | |
Contains the function that generates the weights for a Legendre transform.
Basically, it contains the implementation of the formula as defined in the tensor paper, and also given in the so(3) paper and is mentioned in the s^2 paper! // TODO find these pages
This formula is slightly different from the one given in the original Driscoll and Healy paper because they were sampling at the poles, and now we're not.
In pseudo-TeX, the formula for the bandwidth B weights is:
Definition in file weights.c.
void GenerateWeightsForDLT | ( | const int | bw, |
double * | weights | ||
) |
Generates weights for both even and odd order Legendre transforms for a given bandwidth.
bw | bandwidth of transform |
weights | array of size 4*bw which will contain the weights for both even (starting at weights[0] ) and odd (weights[2*bw] ) transforms |
sin(pi*(2j+1)/(4B))
.