S2kit  1.1
Toolkit for working with functions defined on the sphere
test_conv_semi_fly.c
Go to the documentation of this file.
1 
44 #include <stdio.h>
45 #include <stdlib.h>
46 #include <string.h>
47 
48 #include <fftw3.h>
49 
50 #include "s2kit/FST_semi_fly.h"
51 
52 int main(int argc, char** argv) {
53 
54  if (argc < 5) {
55  fprintf(stdout, "Usage: test_conv_semi_fly signal_file filter_file "
56  "output_file bw\n");
57  exit(0);
58  }
59 
60  int bw = atoi(argv[4]);
61  int size = 2 * bw;
62 
63  double* rsignal = (double*)malloc(sizeof(double) * size * size);
64  double* rfilter = (double*)malloc(sizeof(double) * size * size);
65 
66  // read signal and filter
67  fprintf(stdout, "Reading signal file...\n");
68  FILE* fp = fopen(argv[1], "r");
69  for (int i = 0; i < size * size; ++i)
70  fscanf(fp, "%lf", rsignal + i);
71  fclose(fp);
72 
73  fprintf(stdout, "Reading filter file...\n");
74  fp = fopen(argv[2], "r");
75  for (int i = 0; i < size * size; ++i)
76  fscanf(fp, "%lf", rfilter + i);
77  fclose(fp);
78 
79  // the imaginary parts are zeros,
80  // since the data are strictly real-valued
81  double* isignal = (double*)calloc((size_t)(size * size), sizeof(double));
82  double* ifilter = (double*)calloc((size_t)(size * size), sizeof(double));
83 
84  double* rresult = (double*)malloc(sizeof(double) * size * size);
85  double* iresult = (double*)malloc(sizeof(double) * size * size);
86  double* workspace = (double*)malloc(sizeof(double) * (14 * bw * bw + 26 * bw));
87 
88  fprintf(stdout, "Calling ConvOn2SphereSemiFly()\n");
89  ConvOn2SphereSemiFly(rsignal, isignal, rfilter, ifilter, rresult, iresult, bw, workspace);
90 
91  // convolving real functions results in real output,
92  // so no need to write the imaginary array
93  fprintf(stdout, "Writing output file...\n");
94  fp = fopen(argv[3], "w");
95  for (int i = 0; i < size * size; ++i)
96  fprintf(fp, "%.16f\n", rresult[i]);
97  fclose(fp);
98 
99  free(workspace);
100  free(iresult);
101  free(rresult);
102  free(ifilter);
103  free(rfilter);
104  free(isignal);
105  free(rsignal);
106 
107  return 0;
108 }
FST_semi_fly.h
main
int main(int argc, char **argv)
Definition: test_conv_semi_fly.c:52
ConvOn2SphereSemiFly
void ConvOn2SphereSemiFly(double *, double *, double *, double *, double *, double *, const int, double *)
Convolves two functions defined on the 2-sphere.
Definition: FST_semi_fly.c:454