代码搜索:Probability

找到约 4,670 项符合「Probability」的源代码

代码结果 4,670
www.eeworm.com/read/396844/2407550

m normalize_pot.m

function [pot, loglik] = normalize_pot(pot) % NORMALIZE_POT Convert the probability part of a utility potential % [pot, loglik] = normalize_pot(pot) [pot.p, lik] = normalise(pot.p); %pot.u = pot.u -
www.eeworm.com/read/393163/2488857

m normalize_pot.m

function [pot, loglik] = normalize_pot(pot) % NORMALIZE_POT Convert the probability part of a utility potential % [pot, loglik] = normalize_pot(pot) [pot.p, lik] = normalise(pot.p); %pot.u = pot.u -
www.eeworm.com/read/476078/6773384

m smldp510.m

function [p]=smldP510(snr_in_dB) % [p]=smldP510(snr_in_dB) % SMLDP510 simulates the probability of error for the given % snr_in_dB, signal-to-noise ratio in dB. M=4; % quaternary orth
www.eeworm.com/read/414455/11111390

m smldp510.m

function [p]=smldP510(snr_in_dB) % [p]=smldP510(snr_in_dB) % SMLDP510 simulates the probability of error for the given % snr_in_dB, signal-to-noise ratio in dB. M=4; % quaternary orth
www.eeworm.com/read/335805/12497564

m smldp510.m

function [p]=smldP510(snr_in_dB) % [p]=smldP510(snr_in_dB) % SMLDP510 simulates the probability of error for the given % snr_in_dB, signal-to-noise ratio in dB. M=4; % quaternary orth
www.eeworm.com/read/240637/13209268

m new_wrap2flog.m

function [f_log_pos,f_log_neg,excess] = new_wrap2flog(ext, f_ext, mapping) % converts a probability from LLR to log(tanh(L/2)) form % preserving sign information % % note, the zero is dropped! ... bu
www.eeworm.com/read/342990/11985092

m cm_sm32.m

function [pb,ps]=cm_sm32(snr_in_dB) % find the probability of bit error and symbol error for the giben value of % snr_in_dB. N=10000; E=1; snr=10^(snr_in_dB/10); sgma=sqrt(E/snr)/2; % the
www.eeworm.com/read/293429/3930713

m transition_matrix.m

function [Y_Vector, X_Vector, Probability_Vector, Cost_Vector]=transition_matrix(ax,ay,p) global Pos_Vector_Indexes Speed_Vector_Indexes % transition_matrix: given a state represented by the index vec
www.eeworm.com/read/213104/15142590

cpp define_head.cpp

#define MQC_NUMCTXS 94 #include typedef struct opj_mqc_state { /** the probability of the Least Probable Symbol (0.75->0x8000, 1.5->0xffff) */ unsigned int qeval; //就是输入判决 /** th
www.eeworm.com/read/472943/1402475

m normaldens.m

function ph = NormalDens(x,mu,sigma) % Normal Probability Density % p = NormalDens(x,mu,sigma) if nargin < 2, mu = 0; sigma = 1; end z = (x-mu)/sigma; ph1 = exp( - z.^2 ./ 2 ) ./ sqrt(2*pi)