bipart_perturb.m
来自「模拟退火算法实现」· M 代码 · 共 20 行
M
20 行
function W = bipart_perturb(X,W,Ea,T)
% W = bipart_perturb(X,W,Ea,T)
% Method for graphbipart example supplied with SA Tools.
% See http://www.frostconcepts.com/software for information on SA Tools.
%
% W = bipart_perturb(X,W,Ea,T) ;
%
% X = {N, A}
% N = # of vertices.
% A = Adjacency matrix.
% W = vector of +1, -1 partition of length N
% Ea = (not used) average energy at current temperature.
% T = (not used) current temperature
%
% Flips the sign of a random element of W.
%
n = X{1} ;
i = 1 + floor(n*rand) ;
W(i) = -W(i) ;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?