source: liacs/NC2010/low-correlation/mcs-call.m@ 174

Last change on this file since 174 was 46, checked in by Rick van der Zwet, 15 years ago

Report finished = sleep

  • Property svn:keywords set to Id
File size: 692 bytes
Line 
1% Monte-Carlo Search Algoritm on low-autocorrelation program
2% BSDLicence
3% Rick van der Zwet - 0433373 - <hvdzwet@liacs.nl>
4% $Id: mcs-call.m 46 2009-12-18 01:43:33Z rick $
5
6% Brute-force result of length 20
7% best_20 = [-1,1,1,-1,-1,-1,1,1,-1,1,-1,-1,-1,1,-1,1,1,1,1,1];
8
9%% Basic variables
10iterations = 1000;
11length = 222;
12repetitions = 1;
13
14% Plot the stuff
15[iteration_history, fitness_history] = mcs(length,iterations);
16
17plot(iteration_history,fitness_history);
18title(sprintf('Monte-Carlo Search on Low-Corretation set - repetitions %i',repetitions));
19ylabel('fitness');
20xlabel('iterations');
21grid on;
22legend(sprintf('Length %i',length));
23print(sprintf('mcs-fitness-%f.eps',max(fitness_history)),'-depsc2');
24max(fitness_history)
25
Note: See TracBrowser for help on using the repository browser.