Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Averaged Hausdorff Distance #9

Open
theagos opened this issue Nov 6, 2018 · 1 comment
Open

Averaged Hausdorff Distance #9

theagos opened this issue Nov 6, 2018 · 1 comment
Labels
enhancement New feature or request

Comments

@theagos
Copy link

theagos commented Nov 6, 2018

function Score = Hausdorff(PopObj,PF)
%
% Averaged Hausdorff Distance

%O. Schutze, X. Esquivel, A. Lara, and C. A. C. Coello,
%“Using the averaged hausdorff distance as a performance
%measure in evolutionary multiobjective optimization,”
%IEEE Trans. Evol. Comp, vol. 16, pp. 504–522, Aug. 2012.
%--------------------------------------------------------------------------
% Copyright (c) 2016-2017 BIMK Group. You are free to use the PlatEMO for
% research purposes. All publications which use this platform or any code
% in the platform should acknowledge the use of "PlatEMO" and reference "Ye
% Tian, Ran Cheng, Xingyi Zhang, and Yaochu Jin, PlatEMO: A MATLAB Platform
% for Evolutionary Multi-Objective Optimization [Educational Forum], IEEE
% Computational Intelligence Magazine, 2017, 12(4): 73-87".
%--------------------------------------------------------------------------

% Written by Thiago Santos professor.ufop.br/santostf

cGD  = GD(PopObj,PF);
cIGD = IGD(PopObj,PF);

Score    = max(cGD,cIGD);

end

@anonymone anonymone added bug Something isn't working enhancement New feature or request and removed bug Something isn't working labels Nov 9, 2018
@anonymone
Copy link
Member

Hi, @theagos . Thanks for your advice. We will add this in next version.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants