代码搜索:Beta值
找到约 10,000 项符合「Beta值」的源代码
代码结果 10,000
www.eeworm.com/read/486797/6529337
m beta.m
function BF = Beta(x,y)
format long;
BF = exp(gammaln(x)+gammaln(y)-gammaln(x+y));
www.eeworm.com/read/485122/6565108
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/483504/6598355
m beta.m
function BF = Beta(x,y)
format long;
BF = exp(gammaln(x)+gammaln(y)-gammaln(x+y));
www.eeworm.com/read/263146/11374177
ocf beta.ocf
www.eeworm.com/read/263146/11374305
ocf beta.ocf
www.eeworm.com/read/405558/11460505
m beta.m
function BF = Beta(x,y)
format long;
BF = exp(gammaln(x)+gammaln(y)-gammaln(x+y));
www.eeworm.com/read/404684/11480286
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/404167/11490839
h beta.h
// beta.h
// Copyright (C) 2008 Willow Schlanger
#ifndef l_crudcom__beta_h__included
#define l_crudcom__beta_h__included
#include
#include
#include
#include
www.eeworm.com/read/158443/11616523
c beta.c
#include
float beta(z,w)
float w,z;
{
float gammln();
return exp(gammln(z)+gammln(w)-gammln(z+w));
}
/* (C) Copr. 1986-92 Numerical Recipes Software . */
www.eeworm.com/read/347945/11625471
m beta.m
function varargout=beta(varargin)
%BETA (overloaded)
% Author Johan L鰂berg
% $Id: beta.m,v 1.3 2007/08/02 18:16:26 joloef Exp $
switch class(varargin{1})
case 'sdpvar'
varargout{