S2kit  1.1
Toolkit for working with functions defined on the sphere
chebyshev_nodes.c
Go to the documentation of this file.
1 
7 
8 #include <math.h>
9 
16 void AcosOfChebyshevNodes(const int n, double* eval_points) {
17  double denominator = 2. * n;
18 
19  for (int i = 0; i < n; ++i)
20  eval_points[i] = (2. * i + 1.) * M_PI / denominator;
21 }
22 
29 void ChebyshevNodes(const int n, double* eval_points) {
30  double denominator = 2. * n;
31 
32  for (int i = 0; i < n; ++i)
33  eval_points[i] = cos((2. * i + 1.) * M_PI / denominator);
34 }
chebyshev_nodes.h
AcosOfChebyshevNodes
void AcosOfChebyshevNodes(const int n, double *eval_points)
Generates an array of the angular arguments of n Chebyshev nodes.
Definition: chebyshev_nodes.c:16
ChebyshevNodes
void ChebyshevNodes(const int n, double *eval_points)
Generates an array of n Chebyshev nodes.
Definition: chebyshev_nodes.c:29