代码搜索:Beta值
找到约 10,000 项符合「Beta值」的源代码
代码结果 10,000
www.eeworm.com/read/369418/2799836
java beta.java
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright own
www.eeworm.com/read/474641/6804172
txt beta.txt
module betaFIR (din38,dout38,clk38);
input[3:0] din38;
input clk38;
output [3:0] dout38;
reg clk382,clk384,raddr_start38,macstart38,feedzero38,OE_buff38,buff_OE_start38;
reg[1:0]craddr38,dwaddr
www.eeworm.com/read/473001/6853702
h beta.h
/*
* Generate Beta random deviate
*
* Returns a single random deviate from the beta distribution with
* parameters A and B. The density of the beta is
* x^(a-1) * (1-x)^(b-1
www.eeworm.com/read/193417/8230751
ico beta.ico
www.eeworm.com/read/192744/8287856
txt beta.txt
Function BETA(Z, W)
BETA = Exp(GAMMLN(Z) + GAMMLN(W) - GAMMLN(Z + W))
End Function
www.eeworm.com/read/173971/9619175
ico beta.ico
www.eeworm.com/read/265723/11255253
m beta.m
function y = beta(z,w,v)
%BETA Beta function.
% Y = BETA(Z,W) computes the beta function for corresponding
% elements of Z and W. The beta function is defined as
%
% beta(z,w) = integral
www.eeworm.com/read/265723/11255276
m beta.m
% BETA beta娭悢
%
% Y = BETA(Z,W)偼丄Z 偲 W 偺 懳墳偡傞梫慺偵懳偟偰丄beta娭悢傪寁嶼偟傑偡丅
% beta娭悢偼丄偮偓偺傛偆偵掕媊偝傟傑偡丅
%
% beta(z,w) = t.^(z-1) .* (1-t).^(w-1) dt偺0偐傜1傑偱偺愊暘
%
% 攝楍 Z 偲 W 偼丄摨偠僒僀僘偱側偗傟偽側傝傑偣傫
% (傑偨偼丄偄偢傟偐偑
www.eeworm.com/read/147598/12543587
gif beta.gif
www.eeworm.com/read/334951/12559552
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));
}