• 大小: 119KB
    文件类型: .m
    金币: 2
    下载: 1 次
    发布日期: 2021-01-09
  • 语言: Matlab
  • 标签: matlab  

资源简介

提供了CMAES的详细matlab代码,并且包含测试函数,希望对做优化的同学有一定帮助

资源截图

代码片段和文件信息

function [xmin ...      % minimum search point of last iteration
          fmin ...      % function value of xmin
          counteval ... % number of function evaluations done
          stopflag ...  % stop criterion reached
          out ...       % struct with various histories and solutions
          bestever ...   % struct containing overall best solution (for convenience)
    ] = cmaes( ...
    fitfun ...    % name of objective/fitness function
    xstart ...    % objective variables initial point determines N
    insigma ...   % initial coordinate wise standard deviation(s)
    inopts ...    % options struct see defopts below
    varargin ...   % arguments passed to objective function 
    )
% cmaes.m Version 3.61.beta last change: April 2012 
% CMAES impl

评论

共有 条评论