代码搜索:Beta值
找到约 10,000 项符合「Beta值」的源代码
代码结果 10,000
www.eeworm.com/read/312211/13616021
cpp beta.cpp
#include
#include "nr.h"
using namespace std;
DP NR::beta(const DP z, const DP w)
{
return exp(gammln(z)+gammln(w)-gammln(z+w));
}
www.eeworm.com/read/136812/5860337
outline beta.outline
OUTLINE FOR PROCDOC
I. Set up .so files for _section_
A. Get list of pages as of last release
1. cd /usr/src/man/man_section_
2. sccs prt Makefile (get _version_ for last release)
3. s
www.eeworm.com/read/136812/5860338
mex beta.mex
.PL RIGHT
.UH M "Introduction"
.LP
This document outlines in detail the procedure for building a beta release
of the SunOS Reference Manual,
more commonly known as the
``man pages''.
It is intended to
www.eeworm.com/read/126430/6016887
c beta.c
#include
float beta(z,w)
float w,z;
{
float gammln();
return exp(gammln(z)+gammln(w)-gammln(z+w));
}
www.eeworm.com/read/126430/6017499
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/119864/6081949
c beta.c
/* beta.c
*
* Beta function
*
*
*
* SYNOPSIS:
*
* double a, b, y, beta();
*
* y = beta( a, b );
*
*
*
* DESCRIPTION:
*
* - -
* | (a) | (b)
www.eeworm.com/read/102423/6232556
c beta.c
#include
float beta(z,w)
float w,z;
{
float gammln();
return exp(gammln(z)+gammln(w)-gammln(z+w));
}
www.eeworm.com/read/102423/6233168
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/320368/6295533
txt beta.txt
Function BETA(Z, W)
BETA = Exp(GAMMLN(Z) + GAMMLN(W) - GAMMLN(Z + W))
End Function
www.eeworm.com/read/492901/6412914
cpp beta.cpp
double beta(double z, double w)
{
double temp;
temp = exp(gammln(z) + gammln(w) - gammln(z + w));
return temp;
}