S2kit  1.1
Toolkit for working with functions defined on the sphere
weights.c
Go to the documentation of this file.
1 
18 #include "s2kit/weights.h"
19 
20 #include <math.h>
21 
32 void GenerateWeightsForDLT(const int bw, double* weights) {
33  double coeff = M_PI / (4. * bw);
34 
35  for (int i = 0; i < 2 * bw; ++i) {
36  double sum = 0.;
37  double k = 2. * i + 1.;
38 
39  for (int j = 0; j < bw; ++j)
40  sum += 1. / (2. * j + 1.) * sin(k * (2. * j + 1.) * coeff);
41 
42  sum *= 2. * sin(k * coeff) / bw;
43 
44  weights[i] = sum;
45  weights[i + 2 * bw] = sum * sin(k * coeff);
46  }
47 }
GenerateWeightsForDLT
void GenerateWeightsForDLT(const int bw, double *weights)
Generates weights for both even and odd order Legendre transforms for a given bandwidth.
Definition: weights.c:32
weights.h