Learn R Programming

EvolutionaryGames (version 0.1.2)

ILogit: ILogit dynamic

Description

Imitative Logit dynamic as a type of evolutionary dynamics.

Usage

ILogit(time, state, parameters)

Value

Numeric list. Each component represents the rate of change depending on the dynamic.

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.

Author

Jochen Staudacher jochen.staudacher@hs-kempten.de

References

Weibull, J. W. (1997) "Evolutionary Game Theory", MIT Press.

Examples

Run this code
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)

Run the code above in your browser using DataLab