-
Notifications
You must be signed in to change notification settings - Fork 0
/
evolveARBN.m
72 lines (54 loc) · 2.18 KB
/
evolveARBN.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
70
71
72
function [nodeUpdated, timeStateMatrix] = evolveARBN(node, varargin)
% EVOLVEARBN Develop network gradually K discrete time-steps according to ARBN (Asynchronous
% Random Boolean Network) update scheme.
%
% EVOLVEARBN(NODE) advances all nodes in NODE one time-step in ARBN update mode.
%
% EVOLVEARBN(NODE, K) advances all nodes in NODE K time-steps in ARBN update mode.
%
% EVOLVEARBN(NODE, K, TK) advances all nodes in NODE K time-steps in ARBN update mode
% and saves all TK steps all node-states and the timeStateMatrix to the disk.
%
% Input:
% node - 1 x n structure-array containing node information
% k - (Optional) Number of time-steps
% tk - (Optional) Period for saving node-states/timeStateMatrix to disk.
%
%
% Output:
% nodeUpdated - 1 x n sturcture-array with updated node information
% ("lineNumber", "state", "nextState")
% timeStateMatrix - n x k+1 matrix containing calculated time-state evolution
% Author: Christian Schwarzer - SSC EPFL
% CreationDate: 20.11.2002 LastModified: 20.01.2003
switch nargin
case 1
k = 1;
tk = inf;
case 2
k = varargin{1};
tk = inf;
case 3
k = varargin{1};
tk = varargin{2};
otherwise
error('Wrong number of arguments. Type: help evolveARBN');
end
nodeUpdated = resetNodeStats(node);
timeStateMatrix = zeros(length(nodeUpdated), k+1);
timeStateMatrix(1:length(nodeUpdated),1) = getStateVector(nodeUpdated)';
n = length(nodeUpdated);
% evolve network
for i=2:k+1
nodeSelected = randint(1,1,[1 n]);
nodeUpdated = setLUTLines(nodeUpdated);
nodeUpdated = setNodeNextState(nodeUpdated);
nodeUpdated(nodeSelected).state = nodeUpdated(nodeSelected).nextState;
nodeUpdated(nodeSelected).nbUpdates = nodeUpdated(nodeSelected).nbUpdates + 1;
timeStateMatrix(1:length(nodeUpdated),i) = getStateVector(nodeUpdated)';
if(mod(i-1,tk) == 0)
saveMatrix(nodeUpdated);
saveMatrix(timeStateMatrix(:,1:i));
i-1; % display current time-step for user information
end
end