removed QWQNG, added stdin
This commit is contained in:
commit
0fe369bc5a
39 changed files with 3095 additions and 0 deletions
15
RandTest/Gamma.h
Executable file
15
RandTest/Gamma.h
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
#pragma once
|
||||
|
||||
class CGamma
|
||||
{
|
||||
public:
|
||||
double betacf(double a, double b, double x);
|
||||
double Beta(double z, double a, double b);
|
||||
double Gamma( double a, double chi2 );
|
||||
CGamma();
|
||||
virtual ~CGamma();
|
||||
protected:
|
||||
double gcf( double a, double x );
|
||||
double gamser( double a, double x );
|
||||
double gammln( double xx );
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue