代码搜索:Beta值

找到约 10,000 项符合「Beta值」的源代码

代码结果 10,000
www.eeworm.com/read/387475/8674750

class beta.class

www.eeworm.com/read/382440/9029231

txt beta.txt

Function BETA(Z,W:real):real; begin BETA:=Exp(GAMMLN(Z)+GAMMLN(W)-GAMMLN(Z+W)) end;
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