代码搜索:Probability
找到约 4,670 项符合「Probability」的源代码
代码结果 4,670
www.eeworm.com/read/101557/15827438
m smldpe56.m
function [p]=smldPe56(snr_in_dB)
% [p]=smldPe56(snr_in_dB)
% SMLDPE56 simulates the probability of error for a given
% snr_in_dB, signal to noise ratio in dB.
E=1;
alpha_opt=1/2;
SNR=exp
www.eeworm.com/read/101557/15827443
m smldpe57.m
function [p]=smldPe57(snr_in_dB)
% [p]=smldPe57(snr_in_dB)
% SMLDPE57 simulates the probability of error for the given
% snr_in_dB, signal to noise ratio in dB.
d=1;
SNR=exp(snr_in_dB*log(1
www.eeworm.com/read/101002/15858411
h genetic.h
#include"stdafx.h"
#include
#define CHROMLENGTH 30 //每条染色体的基因段数
#define BITLENGTH 4 //位长度
#define BITMAX 4 //进制
typedef char ALLELE;// 基因类型
class CtrlPoint
{
public:
char
www.eeworm.com/read/191902/8417192
m hmm_evaluation.m
function P = HMM_evaluation(a, b, V)
% Find the probability of a finite state in a Markov chain
%
% Inputs:
% a - Transition probability matrix
% b - Output generator matrix
% V -
www.eeworm.com/read/190387/8444216
m hop_flip.m
function [P, flip]=hop_flip(P, prob, seed)
% function [P, flip]=hop_flip(P, prob, seed)
%
% this routine randomly flips bits in the input pattern (P) according to the
% user specified probability
%
%
www.eeworm.com/read/189063/8492531
m crover.m
function [out1,out2]=crover(in1,in2,pcross)
%
% [out1,out2]=crover(in1,in2,pcross);
%
% Crosses two input members with a probability
% of crossover of pcross (
www.eeworm.com/read/187979/8582934
m mmcfindp0.m
%mmcfindp0(lambda,mu,c)
% This function finds the probability all machines are working
% for an M/M/c queueing system.
function out = mmcfindp0(lambda,mu,c)
p = lambda/(mu*c);
pc = lambda
www.eeworm.com/read/388439/8609175
m crover.m
function [out1,out2]=crover(in1,in2,pcross)
%
% [out1,out2]=crover(in1,in2,pcross);
%
% Crosses two input members with a probability
% of crossover of pcross (
www.eeworm.com/read/288527/8626271
m crover.m
function [out1,out2]=crover(in1,in2,pcross)
%
% [out1,out2]=crover(in1,in2,pcross);
%
% Crosses two input members with a probability
% of crossover of pcross (
www.eeworm.com/read/431631/8664406
m ip_08_07.m
% MATLAB script for Illustrative Problem 8.7
echo on
ep=0.3;
for i=1:2:61
p(i)=0;
for j=(i+1)/2:i
p(i)=p(i)+prod(1:i)/(prod(1:j)*prod(1:(i-j)))*ep^j*(1-ep)^(i-j);
echo off ;
end