代码搜索:Beta值
找到约 10,000 项符合「Beta值」的源代码
代码结果 10,000
www.eeworm.com/read/365698/9850699
m beta.m
function BF = Beta(x,y)
format long;
BF = exp(gammaln(x)+gammaln(y)-gammaln(x+y));
www.eeworm.com/read/365556/9857651
ico beta.ico
www.eeworm.com/read/365496/9861104
c beta.c
/*
* $Id: beta.c 536 2007-06-02 06:09:00Z elliotth $
*
* Copyright (c) 1999-2000, Mj鴏ner Informatics
*
* Written by Erik Corry
*
* This source code is released for free dist
www.eeworm.com/read/361464/10051045
gif beta.gif
www.eeworm.com/read/424281/10467677
c beta.c
/* randist/beta.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough
*
* This program is free software; you can redistribute it and/or modify
* it under the terms o
www.eeworm.com/read/424281/10471506
c beta.c
/* cdf/cdf_beta.c
*
* Copyright (C) 2003, 2007 Brian Gough.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as pu
www.eeworm.com/read/424281/10474301
c beta.c
/* specfunc/beta.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General
www.eeworm.com/read/278154/10564546
c beta.c
#include
float beta(float z, float w)
{
float gammln(float xx);
return exp(gammln(z)+gammln(w)-gammln(z+w));
}
/* (C) Copr. 1986-92 Numerical Recipes Software "U,6VV'. */
www.eeworm.com/read/278154/10564724
c beta.c
#include
float beta(float z, float w)
{
float gammln(float xx);
return exp(gammln(z)+gammln(w)-gammln(z+w));
}
/* (C) Copr. 1986-92 Numerical Recipes Software "U,6VV'. */
www.eeworm.com/read/467530/7005067