% OBJective function for sum of different power FUNction 9 % % This function implements the sum of different power. % % Syntax: ObjVal = objfun9(Chrom, option) % % Input parameters: % Chrom - Matrix containing the chromosomes of the current % population. Each row corresponds to one individual's % string representation. % if Chrom == [], then special values will be returned % option - if Chrom == [] and % option == 1 (or []) return boundaries % option == 2 return title % option == 3 return value of global minimum % % Output parameters: % ObjVal - Column vector containing the objective values of the % individuals in the current population. % if called with Chrom == [], then ObjVal contains % option == 1, matrix with the boundaries of the function % option == 2, text for the title of the graphic output % option == 3, value of global minimum % % See also: objfun1, objfun1a, objfun1b, objfun2, objfun6, objfun7, objfun8, objfun10 % Author: Hartmut Pohlheim % History: 07.04.94 file created % 17.02.95 direct Dim removed and function cleaned function ObjVal = objfun9(Chrom, option); % Compute population parameters [Nind, Nvar] = size(Chrom); % Check size of Chrom and do the appropriate thing % if Chrom is [], then define size of boundary-matrix and values if Nind == 0 % Default dimension of objective function Dim = 10; % return text of title for graphic output if option == 2 ObjVal = ['Sum of different power function 9']; % return value of global minimum elseif option == 3 ObjVal = 0; % define size of boundary-matrix and values else % lower and upper bound, identical for all n variables ObjVal = repmat([-1; 1], [1 Dim]); end % if Dim variables, compute values of function else % function 9, sum of abs(xi)^(i+1) for i = 1:Nvar (Nvar = 30) % n = Nvar, -1 <= xi <= 1 % global minimum at (xi) = (0) ; fmin = 0 nummer = repmat(1:Nvar, [Nind 1]); ObjVal = sum((abs(Chrom) .^ (nummer + 1))')'; end % End of function