KrisLibrary  1.0.0
specialfunctions.h
1 #ifndef MATH_SPECIAL_FUNCTIONS_H
2 #define MATH_SPECIAL_FUNCTIONS_H
3 
4 #include "math.h"
5 
6 namespace Math {
7 
8 double Gamma(double x);
9 double LogGamma(double x);
10 double Beta(double x,double y);
11 double LogBeta(double x,double y);
12 
13 } //namespace Math
14 
15 #endif
Common math typedefs, constants, functions.
double LogBeta(double a, double b)
Computes log B(a,b)
Definition: misc.cpp:173
double Beta(double a, double b)
Computes the beta function B(a,b)
Definition: misc.cpp:172
double Gamma(double x)
Computes the gamma function.
Definition: misc.cpp:169
Contains all definitions in the Math package.
Definition: WorkspaceBound.h:12
double LogGamma(double x)
Computes log gamma(x)
Definition: misc.cpp:170