⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 retrospect.m

📁 Matlab的模拟退火算法工具箱
💻 M
字号:
function T = retrospect(Ea,Estd,walkers,dEtgt,v,e,T,t,P)
% Retrospective temperature update method supplied with SA Tools.
% Copyright (c) 2002, by Richard Frost and Frost Concepts.
% See http://www.frostconcepts.com/software for information on SA Tools.
%
%   T = retrospect(Ea,Estd,walkers,dEtgt,v,e,T,t,P) ;
%
%   Ea = (not used) average energy.
%   Estd = (not used) standard deviation of energies
%   walkers = (not used) number of walkers
%   dEtgt = (not used) difference between present and previous target mean energy
%   v = (not used) thermodynamic speed.
%   e = (not used) estimate of relaxation time.
%   T =  (not used) current temperature.
%   t =  temperature step #.
%   P =  array containing temperature schedule; i.e., T(t+1) = P(t).
%
%   If you want temperature schedule
%           Tt = [1000, 100, 10, 1]
%   then set
%           schedule = @retrospect
%           Tinit = 1000
%           P = [100, 10, 1]
%           maxtemps = 4
%
%   If maxtemps exceeds the number of elements in P then the final temperature
%   will be repeated.
%
n = numel(P) ;
if t > n
    T = P(n) ;
else
    T = P(t) ;
end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -