aboutsummaryrefslogtreecommitdiff
path: root/src/mtx_spherical_harmonics/cmdline/legendre_a_cmd.c
blob: 83845dec23ec4738d82f64a17159b6abaa260306 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49

/* command line test for legendre_a.c 
 * Franz Zotter, 2009, see ../LICENSE.txt */

#include <stdio.h>

#include "legendre_a.h"

int main (int argc, char *argv[]) {
   int nmax, l, lc, n, m;
   LegendreWorkSpace *wl=0;
   double *ptr,*theta;

   if (argc <3) {
      printf("legendre_a requires nmax as input argument followed by theta values\n");
      return 0;
   }

   nmax=atoi(argv[1]);
   l=argc-2;
   if ((theta=(double*)calloc(l,sizeof(double)))==0) {
      printf("legendre_a could not allocate memory for %d theta-values\n",l);
      return 0;
   }
   if ((wl=legendre_a_alloc(nmax,l))==0) {
      printf("legendre_a could not allocate memory for n=%d\n and l=%d\n",nmax,l);
      free(theta);
      return 0;
   }
   for (n=0;n<l;n++) {
      theta[n]=atof(argv[n+2]);
   }
   legendre_a(theta,wl);

   ptr=wl->p;
   for (lc=0;lc<l;lc++) {
      printf("pt %d:\n",lc);
      for (n=0;n<=nmax;n++) {
         for (m=0;m<=n;m++) {
            printf("P[%2d][%2d](%7.4f)=%7.4f\n",n,m,theta[l],*ptr++);
         }
      }
   }
   legendre_a_free(wl);
   free(theta);
   return 1;
}