source: liacs/nc/low-correlation/sa-call.m@ 99

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

Report finished = sleep

  • Property svn:keywords set to Id
File size: 591 bytes
RevLine 
[32]1% Simulated Annealing low-autocorrelation program
[28]2% BSDLicence
3% Rick van der Zwet - 0433373 - <hvdzwet@liacs.nl>
[42]4% $Id: sa-call.m 46 2009-12-18 01:43:33Z rick $
[28]5
[32]6%% Basic variables
[45]7iterations = 10000;
[46]8length = 222;
[28]9
[31]10
[39]11% Always use the same innitial values
12s = initseq(length);
13
[31]14% Plot the stuff
[39]15[iteration_history, fitness_history] = sa(s,iterations);
[31]16
[38]17plot(iteration_history,fitness_history);
[39]18title(sprintf('Simulated Annealing on Low-Corretation set'));
[31]19ylabel('fitness');
20xlabel('iterations');
21grid on;
22legend(sprintf('Length %i',length));
[46]23print(sprintf('sa-fitness-%f.eps',max(fitness_history)),'-depsc2');
24max(fitness_history)
Note: See TracBrowser for help on using the repository browser.