ILogit {EvolutionaryGames} | R Documentation |
ILogit dynamic
Description
Imitative Logit dynamic as a type of evolutionary dynamics.
Usage
ILogit(time, state, parameters)
Arguments
time |
Regular sequence that represents the time sequence under which simulation takes place. |
state |
Numeric vector that represents the initial state. |
parameters |
Numeric vector that represents parameters needed by the dynamic. |
Value
Numeric list. Each component represents the rate of change depending on the dynamic.
Author(s)
Jochen Staudacher jochen.staudacher@hs-kempten.de
References
Weibull, J. W. (1997) "Evolutionary Game Theory", MIT Press.
Examples
dynamic <- ILogit
A <- matrix(c(-1, 0, 0, 0, -1, 0, 0, 0, -1), 3, byrow=TRUE)
state <- matrix(c(0.1, 0.2, 0.7, 0.2, 0.7, 0.1, 0.9, 0.05, 0.05), 3, 3, byrow=TRUE)
eta <- 0.7
phaseDiagram3S(A, dynamic, eta, state, TRUE, FALSE)
[Package EvolutionaryGames version 0.1.2 Index]