%% Usage examples for the EvA2 to Matlab interface. % Author: Marcel Kronfeld, Chair for Cognitive Systems, University of Tuebingen, Germany % URL: http://www.ra.cs.uni-tuebingen.de/software/EvA2/ % adapt the path settings! addpath '/home/user/workspace/MatlabInterface' % .. directory containing @JEInterface javaaddpath '/home/user/workspace/EvA2Base.jar' % .. the EvA2 base package % addpath 'C:\Projects\eva2\resources\MatlabInterface' % Windows will look differently % javaaddpath 'C:\Projects\eva2\out\artifacts\EvA2\EvA2.jar' % Windows will look differently % real valued case R=[-5 -5 -5; 5 5 5]; JI=JEInterface(@testfun, 'double', R, R, 1, 'Display', 'iter', 'TolX', 0, 'TolFun', 0); JI=optimize(JI, 4); [sol, solFit]=getResult(JI); finalPop=getMultipleResults(JI); % binary case R=30; JI=JEInterface(@testfun, 'binary', R, R, 4, 'Display', 'iter'); JI=setOutputAllStatsFields(JI, 0); % suppress output of additional statistics, spares runtime with large populations JI=optimizeWith(JI, 3, 'population', eva2.optimization.populations.Population(1000)); [sol, fit]=getResult(JI); finalPop=getMultipleResults(JI); % binary case with a multi-objective fitness function R=30; JI=JEInterface(@testfun, 'binary', R, R, 6, 'Display', 'iter', 'TolX', 0, 'TolFun', 0, 'MaxFunEvals', 3000); JI=optimizeWith(JI, 14); % The resulting solution set is a pareto dominant set found with NSGA-II [finalSols, finalFit]=getMultipleResults(JI); % integer case with specific initialization range initR=[-15 -15 -15 -15 -15; -5 -5 -5 -5 -5]; R=[-15 -15 -15 -15 -15; 15 15 15 15 15]; JI=JEInterface(@testfun, 'int', R, initR, 5, 'Display', 'iter'); JI=optimize(JI, 3); [sol, fit]=getResult(JI); finalPop=getMultipleResults(JI);