-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest2.m
71 lines (47 loc) · 1.18 KB
/
test2.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
% example of a game with two populations and two strategies per population.
clear
% number of populations
P = 2;
% number of pure strategies per population
n = 2;
% mass of the population
m = 1;
% initial condition
x0 = [0.1 0.9; 0.2 0.8];
% simulation parameters
time = 30;
% structure with the parameters of the game
G1 = struct('P', P, 'n', n, 'f', @fitness2, 'x0', x0, 'ode', 'ode45', 'time', time);
% The following game uses a random intial condition
% G1 = struct('P', P, 'n', n, 'f', @fitness2, 'ode', 'ode45','time', time);
% verify data of the game
G1 = definition(G1);
G1.dynamics = {'rd'};
G1.run()
G1.graph2p()
G1.graph_evolution()
disp (['Press any key to continue...', sprintf('\n') ]);
pause
G1.dynamics = {'maynard_rd'};
G1.run()
G1.graph2p()
G1.graph_evolution()
disp (['Press any key to continue...', sprintf('\n') ]);
pause
G1.dynamics = {'bnn'};
G1.run()
G1.graph2p()
G1.graph_evolution()
disp (['Press any key to continue...', sprintf('\n') ]);
pause
G1.dynamics = {'smith'};
G1.run()
G1.graph2p()
G1.graph_evolution()
disp (['Press any key to continue...', sprintf('\n') ]);
pause
G1.dynamics = {'logit'};
G1.eta = .02;
G1.run()
G1.graph2p()
G1.graph_evolution()