代码搜索:SA技术
找到约 10,000 项符合「SA技术」的源代码
代码结果 10,000
www.eeworm.com/read/388838/8572792
gif sa8.gif
www.eeworm.com/read/431861/8648910
m sa1.m
tic
I = imread('cameraman.jpg');
H=imrotate(I,3,'bilinear','crop');
H=rgb2gray(H);
I=rgb2gray(I);
I=double(I);
H=double(H);
fw=mean2(abs(H-I));
fb=0;
p=0.8;
t0=-(fw-fb)/log(p);
n=5;
nn=n*n
www.eeworm.com/read/386978/8714807
m sa_routingmove.m
function [x1,changex,l1,tabu]=sa_routingmove(x0,l0,tabu)
nu1=rand;
if nu1>0.7
[x1,changex,l1]=insert(x0,l0);
elseif nu1>0.4
[x1,changex,l1]=swap_routing(x0,l0);
else
[x1,changex,l1]
www.eeworm.com/read/386978/8714824
asv sa_routingmove.asv
function [x1,changex,l1,tabu]=sa_routingmove(x0,l0,tabu)
nu1=unidrnd(3);
switch nu
case 1
[x1,changex,l1]=insert(x0,l0);
case 2
[x1,changex,l1]=sw
www.eeworm.com/read/386978/8714889
asv sa_locationmove.asv
function [x1,changex,l1,tabu]=sa_locationmove(x0,l0,tabu)
nu1=rand;
if nu1>0.5
[x1,changex,l1]=drop(x0,l0);
else
[x1,changex,l1]=swap_location(x0,l0);
end
% 满足容量需求
www.eeworm.com/read/386978/8714916
m sa_locationmove.m
function [x1,changex,l1,tabu]=sa_locationmove(x0,l0,tabu)
nu1=rand;
if nu1>0.5
[x1,changex,l1]=drop(x0,l0);
else
[x1,changex,l1]=swap_location(x0,l0);
end
% 满足容量需求
while find
www.eeworm.com/read/286662/8751761
m stochastic_sa.m
function [patterns, targets] = Stochastic_SA(train_patterns, train_targets, params, plot_on)
%Reduce the number of data points using the stochastic simulated annealing algorithm
%Inputs:
% train_
www.eeworm.com/read/286662/8751958
m deterministic_sa.m
function [patterns, targets] = Deterministic_SA(train_patterns, train_targets, params, plot_on)
%Reduce the number of data points using the deterministic simulated annealing algorithm
%Inputs:
%
www.eeworm.com/read/429111/8818264
jpg sa016.jpg
www.eeworm.com/read/429111/8818274