代码搜索:Probability
找到约 4,670 项符合「Probability」的源代码
代码结果 4,670
www.eeworm.com/read/203062/15366738
h limcti.h
/**
* Li Monte Carlo Tunneling Ionization (LiMCTI) class.
* Specializes the MCTIPackage class for the simulations
* of tunneling ionization of He under the influence
* of linearly polarized alte
www.eeworm.com/read/203062/15366833
h hemcti.h
/**
* He Monte Carlo Tunneling Ionization (HeMCTI) class.
* Specializes the MCTIPackage class for the simulations
* of tunneling ionization of He under the influence
* of linearly polarized alte
www.eeworm.com/read/202785/15373285
m mutate.m
function out=mutate(in,pmutate);
%
% Mutate the incoming chromasome
% with a probability of mutating
% each string of pmutate.
%
% This file takes only one member
% of the overall population.
www.eeworm.com/read/250980/12372122
m chi_square_bound.m
function x = chi_square_bound(prob, n)
%function x = chi_square_bound(prob, n)
%
% INPUTS:
% prob - probability [0, 1)
% n - degrees of freedom
%
% OUTPUT:
% x - point on the x-axis wh
www.eeworm.com/read/181026/9277157
m sga_pro_demo.m
%test sga_pro
clear;
home
tic
% open data files
%input data files
fid1=fopen('min_confines.txt','r');
fid2=fopen('max_confines.txt','r');
fid3=fopen('probability_crossover.txt','r');
fid4=fop
www.eeworm.com/read/466875/7022432
m sgalab_demo_mo_vega.m
% /*M-FILE SCRIPT SGALAB_DEMO_MO_VEGA MMM SGALAB */ %
% /*==================================================================================================
% Simple Genetic Algorithm Laboratory To
www.eeworm.com/read/139191/13184533
m sga_pro_demo.m
%test sga_pro
clear;
home
tic
% open data files
%input data files
fid1=fopen('min_confines.txt','r');
fid2=fopen('max_confines.txt','r');
fid3=fopen('probability_crossover.txt','r');
fid4=fop
www.eeworm.com/read/128004/14320376
m sga_pro_demo.m
%test sga_pro
clear;
home
tic
% open data files
%input data files
fid1=fopen('min_confines.txt','r');
fid2=fopen('max_confines.txt','r');
fid3=fopen('probability_crossover.txt','r');
fid4=fop
www.eeworm.com/read/134728/13975838
m sga_pro_demo.m
%test sga_pro
clear;
home
tic
% open data files
%input data files
fid1=fopen('min_confines.txt','r');
fid2=fopen('max_confines.txt','r');
fid3=fopen('probability_crossover.txt','r');
fid4=fop
www.eeworm.com/read/391253/8414084
m probtrans.m
function A=probtrans(B,l)
%求输入矩阵B的转移概率矩阵
%l索引最大值
A=zeros(l);
for i=1:length(B)-1
A(B(i)+1,B(i+1)+1)=A(B(i)+1,B(i+1)+1)+1;
end
for i=1:l
c=sum(A(i,:));
for j=1:l
if c==0