S2kit  1.1
Toolkit for working with functions defined on the sphere
seminaive.h
Go to the documentation of this file.
1 #ifndef _SEMINAIVE_H
2 #define _SEMINAIVE_H
3 
4 #include <fftw3.h>
5 
6 void DLTSemi(double*, const int, const int, double*, double*, double*, double*, fftw_plan*);
7 
8 void InvDLTSemi(double*, const int, const int, double*, double*, double*, double*, fftw_plan*);
9 
10 #endif // _SEMINAIVE_H
InvDLTSemi
void InvDLTSemi(double *, const int, const int, double *, double *, double *, double *, fftw_plan *)
Computes the inverse Legendre transform using the transposed seminaive algorithm.
Definition: seminaive.c:56
DLTSemi
void DLTSemi(double *, const int, const int, double *, double *, double *, double *, fftw_plan *)
Computes the Legendre transform of data using the seminaive algorithm.
Definition: seminaive.c:153