BIMK / PlatEMO

Evolutionary multi-objective optimization platform
1.5k stars 453 forks source link

Averaged Hausdorff Distance #9

Open theagos opened 5 years ago

theagos commented 5 years ago

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 commented 5 years ago

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