mirror of
https://github.com/gwm17/Mask.git
synced 2024-11-13 05:58:50 -05:00
16 lines
259 B
C++
16 lines
259 B
C++
#ifndef LEGENDREPOLY_H
|
|
#define LEGENDREPOLY_H
|
|
|
|
namespace Mask {
|
|
|
|
double P_l(int l, double x);
|
|
double P_l_ROOT(double* x, double* pars);
|
|
double Normed_P_l_sq(int l, double x);
|
|
|
|
double P_0(double x);
|
|
double P_1(double x);
|
|
double P_2(double x);
|
|
|
|
}
|
|
|
|
#endif |