Talk:Matlab:Gradual dimming population model: Difference between revisions

From Puella Magi Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
Can I get a few extra simulations with the below values?
Can I get a few extra simulations with the below values?
#1
 
==First try==


C = 10;    % Number of girls contracted by QBe
C = 10;    % Number of girls contracted by QBe
Line 13: Line 14:
W(1) = 0;  % Number of witches at first
W(1) = 0;  % Number of witches at first


==Result==
[[File:Matlab talkpage result 1.png|thumb|500px|left]]


#2
{{-}}
==Second try==
C = 10;    % Number of girls contracted by QBe
C = 10;    % Number of girls contracted by QBe
D = 0.01;    % Proportion of girls (who are fighting) that die
D = 0.01;    % Proportion of girls (who are fighting) that die
Line 26: Line 30:
W(1) = 0;  % Number of witches at first
W(1) = 0;  % Number of witches at first


==Result==
[[File:Matlab talkpage result 2.png|thumb|500px|left]]


#3
{{-}}
==Third try==
C = 10;    % Number of girls contracted by QBe
C = 10;    % Number of girls contracted by QBe
D = 0.01;    % Proportion of girls (who are fighting) that die
D = 0.01;    % Proportion of girls (who are fighting) that die
Line 39: Line 46:
W(1) = 0;  % Number of witches at first
W(1) = 0;  % Number of witches at first


#4
==Result==
C = 10;    % Number of girls contracted by QBe
[[File:Matlab talkpage result 3.png|thumb|500px|left]]
D = 0.01;    % Proportion of girls (who are fighting) that die
B = 0.01;  % Proportion of girls (who are fighting) to become witches
F = 0.05;  % Proportion of familiars becoming witches
K = 0.2;  % Proportion of witches getting killed by MSes
P = 0.95;  % proportion of MSes fightgins
T = 0.0001; % Number of MSes turning into witches over time
 
M(1) = 0;  % Number of magical girls at first
W(1) = 0;  % Number of witches at first

Revision as of 15:51, 20 March 2011

Can I get a few extra simulations with the below values?

First try

C = 10;  % Number of girls contracted by QBe D = 0.01;  % Proportion of girls (who are fighting) that die B = 0.1;  % Proportion of girls (who are fighting) to become witches F = 0.5;  % Proportion of familiars becoming witches K = 0.2;  % Proportion of witches getting killed by MSes P = 0.95;  % proportion of MSes fightgins T = 0.0001; % Number of MSes turning into witches over time

M(1) = 0;  % Number of magical girls at first W(1) = 0;  % Number of witches at first

Result

Matlab talkpage result 1.png


Second try

C = 10;  % Number of girls contracted by QBe D = 0.01;  % Proportion of girls (who are fighting) that die B = 0.1;  % Proportion of girls (who are fighting) to become witches F = 0.05;  % Proportion of familiars becoming witches K = 0.2;  % Proportion of witches getting killed by MSes P = 0.95;  % proportion of MSes fightgins T = 0.0001; % Number of MSes turning into witches over time

M(1) = 0;  % Number of magical girls at first W(1) = 0;  % Number of witches at first

Result

Matlab talkpage result 2.png


Third try

C = 10;  % Number of girls contracted by QBe D = 0.01;  % Proportion of girls (who are fighting) that die B = 0.1;  % Proportion of girls (who are fighting) to become witches F = 0.5;  % Proportion of familiars becoming witches K = 0.2;  % Proportion of witches getting killed by MSes P = 0.95;  % proportion of MSes fightgins T = 0.01; % Number of MSes turning into witches over time

M(1) = 0;  % Number of magical girls at first W(1) = 0;  % Number of witches at first

Result

Matlab talkpage result 3.png