代码搜索:Probability
找到约 4,670 项符合「Probability」的源代码
代码结果 4,670
www.eeworm.com/read/402117/11542920
m prob_snr1.m
% This program is used to produce Fig. 2.4
close all
clear all
for nfa = 2:2:12
b = sqrt(-2.0 * log(10^(-nfa)));
index = 0;
hold on
for snr = 0:.1:18
index = index +1;
www.eeworm.com/read/401480/11557218
m prob_snr1.m
% This program is used to produce Fig. 2.4
close all
clear all
for nfa = 2:2:12
b = sqrt(-2.0 * log(10^(-nfa)));
index = 0;
hold on
for snr = 0:.1:18
index = index +1;
www.eeworm.com/read/262112/11605467
m hufflen.m
function HL = hufflen(S)
% Based on probability (or number of occurences) of each symbol
% the length for the Huffman codewords are calculated.
%
% HL = hufflen(S);
% --------------------------
www.eeworm.com/read/158463/11612899
m expected.m
function e=expected(funfcn,a,b,tol,p1,p2,p3)
% EXPECTED Finds the expected value of a random variable
% with probability density function 'funfcn' and
% support [a,b].
% Y=EXPECTED('F',A,B
www.eeworm.com/read/158037/11648115
m dirichletpdf.m
function p = dirichletpdf(x, alpha)
%DIRICHLETPDF Dirichlet probability density function.
% p = dirichletpdf(x, alpha) returns the probability of vector
% x under the Dirichlet distribution with p
www.eeworm.com/read/157905/11656555
m prob_snr1.m
% This program is used to produce Fig. 2.4
close all
clear all
for nfa = 2:2:12
b = sqrt(-2.0 * log(10^(-nfa)));
index = 0;
hold on
for snr = 0:.1:18
index = index +1;
www.eeworm.com/read/157396/11712083
h lmodel.h
/* ----------------------------------------------------------- */
/* */
/* ___ */
/*
www.eeworm.com/read/346715/11728885
java geneticsearch.java
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either vers
www.eeworm.com/read/153823/12004301
m wtrouselect.m
function Idx = wtrouselect(w,m,n)
%WTROUSELECT Weighted roulette selection.
% Idx = wtrouselect(w,m,n)
% w = p-element vector of weights
% Idx = m x n matrix of random indices between 1 an
www.eeworm.com/read/153543/12028773
bas inference.bas
Attribute VB_Name = "Inference"
Option Explicit
' Inference: an Overview
Sub InferenceExample()
Dim aMSBN As New MSBN3Lib.MSBN
'Load the Auto model
Dim modelAuto As M