S2kit  1.1
Toolkit for working with functions defined on the sphere
pmm.c
Go to the documentation of this file.
1 
6 #include "s2kit/pmm.h"
7 
8 #include <math.h>
9 
21 void Pmm_L2(const int m, double* eval_points, const int n, double* result) {
22  double normed_coeff = sqrt(m + 0.5);
23 
24  for (int i = 0; i < m; ++i)
25  normed_coeff *= sqrt((m - (i / 2.)) / ((double)m - i));
26 
27  if (m)
28  normed_coeff *= pow(2., -m / 2.);
29  if (m % 2)
30  normed_coeff *= -1.;
31 
32  for (int i = 0; i < n; ++i)
33  result[i] = normed_coeff * pow(sin(eval_points[i]), m);
34 }
Pmm_L2
void Pmm_L2(const int m, double *eval_points, const int n, double *result)
Generates L2-normed Pmm.
Definition: pmm.c:21
pmm.h