代码搜索:Beta值
找到约 10,000 项符合「Beta值」的源代码
代码结果 10,000
www.eeworm.com/read/247775/12619412
cpp beta.cpp
double beta(double z, double w)
{
double temp;
temp = exp(gammln(z) + gammln(w) - gammln(z + w));
return temp;
}
www.eeworm.com/read/135438/13931918
txt beta.txt
Function BETA(Z,W:real):real;
begin
BETA:=Exp(GAMMLN(Z)+GAMMLN(W)-GAMMLN(Z+W))
end;
www.eeworm.com/read/237003/13982927
h beta.h
/*
* Generate Beta random deviate
*
* Returns a single random deviate from the beta distribution with
* parameters A and B. The density of the beta is
* x^(a-1) * (1-x)^(b-1) / B
www.eeworm.com/read/132413/14090171
c beta.c
#include
float beta(z,w)
float z,w;
{
float gammln();
return exp(gammln(z)+gammln(w)-gammln(z+w));
}
www.eeworm.com/read/234919/14093877
cpp beta.cpp
double beta(double z, double w)
{
double temp;
temp = exp(gammln(z) + gammln(w) - gammln(z + w));
return temp;
}
www.eeworm.com/read/203453/15359046
cpp beta.cpp
double beta(double z, double w)
{
double temp;
temp = exp(gammln(z) + gammln(w) - gammln(z + w));
return temp;
}
www.eeworm.com/read/112642/15481025
c beta.c
www.eeworm.com/read/108219/15590915
c beta.c
#include
float beta(z,w)
float z,w;
{
float gammln();
return exp(gammln(z)+gammln(w)-gammln(z+w));
}
www.eeworm.com/read/106940/15616980
c beta.c
#include
float beta(z,w)
float z,w;
{
float gammln();
return exp(gammln(z)+gammln(w)-gammln(z+w));
}
www.eeworm.com/read/106929/15617327
cpp beta.cpp
#include
#include "nr.h"
using namespace std;
DP NR::beta(const DP z, const DP w)
{
return exp(gammln(z)+gammln(w)-gammln(z+w));
}