Last change
on this file since 313 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
|
Line | |
---|
1 | % Simulated Annealing low-autocorrelation program
|
---|
2 | % BSDLicence
|
---|
3 | % Rick van der Zwet - 0433373 - <hvdzwet@liacs.nl>
|
---|
4 | % $Id: sa-call.m 46 2009-12-18 01:43:33Z rick $
|
---|
5 |
|
---|
6 | %% Basic variables
|
---|
7 | iterations = 10000;
|
---|
8 | length = 222;
|
---|
9 |
|
---|
10 |
|
---|
11 | % Always use the same innitial values
|
---|
12 | s = initseq(length);
|
---|
13 |
|
---|
14 | % Plot the stuff
|
---|
15 | [iteration_history, fitness_history] = sa(s,iterations);
|
---|
16 |
|
---|
17 | plot(iteration_history,fitness_history);
|
---|
18 | title(sprintf('Simulated Annealing on Low-Corretation set'));
|
---|
19 | ylabel('fitness');
|
---|
20 | xlabel('iterations');
|
---|
21 | grid on;
|
---|
22 | legend(sprintf('Length %i',length));
|
---|
23 | print(sprintf('sa-fitness-%f.eps',max(fitness_history)),'-depsc2');
|
---|
24 | max(fitness_history)
|
---|
Note:
See
TracBrowser
for help on using the repository browser.