代码搜索:beta
找到约 10,000 项符合「beta」的源代码
代码结果 10,000
www.eeworm.com/read/282901/9054310
gif beta.gif
www.eeworm.com/read/184669/9089905
ico beta.ico
www.eeworm.com/read/282334/9100868
uimage-beta
www.eeworm.com/read/179705/9341789
c beta.c
/* randist/beta.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the
www.eeworm.com/read/179705/9343282
c beta.c
/* cdf/cdf_beta.c
*
* Copyright (C) 2003 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 publishe
www.eeworm.com/read/179705/9344208
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/373742/9441270
c beta.c
#include
float beta(float z, float w)
{
float gammln(float xx);
return exp(gammln(z)+gammln(w)-gammln(z+w));
}
www.eeworm.com/read/372592/9501424
txt beta.txt
Function BETA(Z, W)
BETA = Exp(GAMMLN(Z) + GAMMLN(W) - GAMMLN(Z + W))
End Function
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