代码搜索:Beta值
找到约 10,000 项符合「Beta值」的源代码
代码结果 10,000
www.eeworm.com/read/124283/14578667
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/124283/14580461
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/124283/14581607
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/124221/14588443
txt beta.txt
Function BETA(Z,W:real):real;
begin
BETA:=Exp(GAMMLN(Z)+GAMMLN(W)-GAMMLN(Z+W))
end;
www.eeworm.com/read/122037/14724713
txt beta.txt
Function BETA(Z,W:real):real;
begin
BETA:=Exp(GAMMLN(Z)+GAMMLN(W)-GAMMLN(Z+W))
end;
www.eeworm.com/read/221179/14755900
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/220447/14800328
txt beta.txt
Function BETA(Z,W:real):real;
begin
BETA:=Exp(GAMMLN(Z)+GAMMLN(W)-GAMMLN(Z+W))
end;
www.eeworm.com/read/218575/14914852
gif beta.gif
www.eeworm.com/read/217040/14981665
pas beta.pas
FUNCTION beta(VAR z,w: real): real;
BEGIN
beta := exp(gammln(z)+gammln(w)-gammln(z+w))
END;
www.eeworm.com/read/217040/14981729
dem beta.dem
PROGRAM d6r5(input,output,dfile);
(* driver for routine BETA *)
VAR
i,nval : integer;
val,w,z : real;
txt : string[13];
dfile : text;
(*$I MODFILE.PAS *)
(*$I GAMMLN.PAS *)
(*