代码搜索:Probability
找到约 4,670 项符合「Probability」的源代码
代码结果 4,670
www.eeworm.com/read/287843/8665276
m smldpe58.m
function [p]=smldPe58(snr_in_dB)
% [p]=smldPe58(snr_in_dB)
% SMLDPE58 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/287843/8665567
m cm_sm41.m
function [p]=cm_sm41(snr_in_dB)
% [p]=cm_sm41(snr_in_dB)
% CM_SM41 finds the probability of error for the given
% value of snr_in_dB, SNR in dB.
N=10000;
d=1; % min. distance between
www.eeworm.com/read/287843/8665612
m entropy.m
function h=entropy(p)
% H=ENTROPY(P) returns the entropy function of
% the probability vector p.
if length(find(p
www.eeworm.com/read/431613/8665629
m entropy.m
function h=entropy(p)
% H=ENTROPY(P) returns the entropy function of
% the probability vector p.
if length(find(p
www.eeworm.com/read/285340/8849901
m contents.m
% RICIAN
%
% Files
% ricepdf - Rice/Rician probability density function (pdf).
% ricernd - Random samples from the Rice/Rician probability distribution.
% ricestat - Mean and variance of Rice/
www.eeworm.com/read/383607/8932794
m plotpc.m
function [ outy ] = plotPC( n )
nA = 0:100;
outy = PC(n, nA);
plot(nA, outy);
xlabel('A');ylabel('P(C)');
title('Blocking Probability vs. A (from Erlang C formula)');
www.eeworm.com/read/383607/8932796
m finishpc2.m
A = 0:100;
n = [1,2,10,20,30,40,50,60,70,80,90,100];
out = [];
for i = n
out = [out; PC(i, A)];
end
plot(A,out')
labeling(n,out);
xlabel('A');ylabel('P(C)');
title('Blocking Probability vs. A (fro
www.eeworm.com/read/383607/8932799
m plotpb.m
function [ outy ] = plotPB( n )
A = 0:100;
outy = PB(n, A);
plot(A, outy);
xlabel('A');ylabel('P(B)');
title('Blocking Probability vs. A (from Erlang B formula)');
www.eeworm.com/read/383607/8932800
m finishpb2.m
A = 0:100;
n = [1,2,10,20,30,40,50,60,70,80,90,100];
out = [];
for i = n
out = [out; PB(i, A)];
end
plot(A,out')
labeling(n,out);
xlabel('A');ylabel('P(B)');
title('Blocking Probability vs. A (fro