/usr/share/octave/packages/optim-1.5.2/adsmax.m is in octave-optim 1.5.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 | %% Copyright (C) 2002 N.J.Higham
%% Copyright (C) 2003 Andy Adler <adler@ncf.ca>
%%
%% This program is free software; you can redistribute it and/or modify it under
%% the terms of the GNU General Public License as published by the Free Software
%% Foundation; either version 3 of the License, or (at your option) any later
%% version.
%%
%% This program is distributed in the hope that it will be useful, but WITHOUT
%% ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
%% FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
%% details.
%%
%% You should have received a copy of the GNU General Public License along with
%% this program; if not, see <http://www.gnu.org/licenses/>.
%%ADSMAX Alternating directions method for direct search optimization.
%% [x, fmax, nf] = ADSMAX(FUN, x0, STOPIT, SAVIT, P) attempts to
%% maximize the function FUN, using the starting vector x0.
%% The alternating directions direct search method is used.
%% Output arguments:
%% x = vector yielding largest function value found,
%% fmax = function value at x,
%% nf = number of function evaluations.
%% The iteration is terminated when either
%% - the relative increase in function value between successive
%% iterations is <= STOPIT(1) (default 1e-3),
%% - STOPIT(2) function evaluations have been performed
%% (default inf, i.e., no limit), or
%% - a function value equals or exceeds STOPIT(3)
%% (default inf, i.e., no test on function values).
%% Progress of the iteration is not shown if STOPIT(5) = 0 (default 1).
%% If a non-empty fourth parameter string SAVIT is present, then
%% `SAVE SAVIT x fmax nf' is executed after each inner iteration.
%% By default, the search directions are the co-ordinate directions.
%% The columns of a fifth parameter matrix P specify alternative search
%% directions (P = EYE is the default).
%% NB: x0 can be a matrix. In the output argument, in SAVIT saves,
%% and in function calls, x has the same shape as x0.
%% ADSMAX(fun, x0, STOPIT, SAVIT, P, P1, P2,...) allows additional
%% arguments to be passed to fun, via feval(fun,x,P1,P2,...).
%% Reference:
%% N. J. Higham, Optimization by direct search in matrix computations,
%% SIAM J. Matrix Anal. Appl, 14(2): 317-333, 1993.
%% N. J. Higham, Accuracy and Stability of Numerical Algorithms,
%% Second edition, Society for Industrial and Applied Mathematics,
%% Philadelphia, PA, 2002; sec. 20.5.
% From Matrix Toolbox
% Copyright (C) 2002 N.J.Higham
% www.maths.man.ac.uk/~higham/mctoolbox
% Modifications for octave by A.Adler 2003
function [x, fmax, nf] = adsmax(f, x, stopit, savit, P, varargin)
x0 = x(:); % Work with column vector internally.
n = length(x0);
mu = 1e-4; % Initial percentage change in components.
nstep = 25; % Max number of times to double or decrease h.
% Set up convergence parameters.
if nargin < 3
stopit(1) = 1e-3;
elseif isempty(stopit)
stopit(1) = 1e-3;
endif
tol = stopit(1); % Required rel. increase in function value over one iteration.
if length(stopit) == 1, stopit(2) = inf; end % Max no. of f-evaluations.
if length(stopit) == 2, stopit(3) = inf; end % Default target for f-values.
if length(stopit) < 5, stopit(5) = 1; end % Default: show progress.
trace = stopit(5);
if length(stopit) == 5, stopit(6) = 1; end % Default: maximize
dirn= stopit(6);
if nargin < 4, savit = []; end % File name for snapshots.
% Matrix of search directions.
if nargin < 5
P = eye(n);
elseif isempty(P)
P = eye(n);
else
if ~isequal(size(P),[n n]) % Check for common error.
error('P must be of dimension the number of elements in x0.')
end
end
fmax = dirn*feval(f,x,varargin{:}); nf = 1;
if trace, fprintf('f(x0) = %9.4e\n', fmax), end
steps = zeros(n,1);
it = 0; y = x0;
while 1 % Outer loop.
it = it+1;
if trace, fprintf('Iter %2.0f (nf = %2.0f)\n', it, nf), end
fmax_old = fmax;
for i=1:n % Loop over search directions.
pi = P(:,i);
flast = fmax;
yi = y;
h = sign(pi'*yi)*norm(pi.*yi)*mu; % Initial step size.
if h == 0, h = max(norm(yi,inf),1)*mu; end
y = yi + h*pi;
x(:) = y; fnew = dirn*feval(f,x,varargin{:}); nf = nf + 1;
if fnew > fmax
fmax = fnew;
if fmax >= stopit(3)
if trace
fprintf('Comp. = %2.0f, steps = %2.0f, f = %9.4e*\n', i,0,fmax)
fprintf('Exceeded target...quitting\n')
end
x(:) = y; return
end
h = 2*h; lim = nstep; k = 1;
else
h = -h; lim = nstep+1; k = 0;
end
for j=1:lim
y = yi + h*pi;
x(:) = y; fnew = dirn*feval(f,x,varargin{:}); nf = nf + 1;
if fnew <= fmax, break, end
fmax = fnew; k = k + 1;
if fmax >= stopit(3)
if trace
fprintf('Comp. = %2.0f, steps = %2.0f, f = %9.4e*\n', i,j,fmax)
fprintf('Exceeded target...quitting\n')
end
x(:) = y; return
end
h = 2*h;
end
steps(i) = k;
y = yi + 0.5*h*pi;
if k == 0, y = yi; end
if trace
fprintf('Comp. = %2.0f, steps = %2.0f, f = %9.4e', i, k, fmax)
fprintf(' (%2.1f%%)\n', 100*(fmax-flast)/(abs(flast)+eps))
end
if nf >= stopit(2)
if trace
fprintf('Max no. of function evaluations exceeded...quitting\n')
end
x(:) = y; return
end
if (fmax > flast && ~isempty (savit))
x(:) = y;
eval(['save ' savit ' x fmax nf'])
end
end % Loop over search directions.
if isequal(steps,zeros(n,1))
if trace, fprintf('Stagnated...quitting\n'), end
x(:) = y; return
end
if fmax-fmax_old <= tol*abs(fmax_old)
if trace, fprintf('Function values ''converged''...quitting\n'), end
x(:) = y; return
end
end %%%%%% Of outer loop.
|