isPrimitive: Determine primitivity of a matrix

Description Usage Arguments Details Value References See Also Examples

View source: R/isPrimitive.R

Description

Determine whether a matrix is primitive or imprimitive

Usage

1

Arguments

A

a square, non-negative numeric matrix of any dimension.

Details

isPrimitive works on the premise that a matrix A is primitive if A^(s^2-(2*s)+2) is positive, where s is the dimension of A (Caswell 2001).

Value

TRUE (for an primitive matrix) or FALSE (for an imprimitive matrix).

References

See Also

Other PerronFrobeniusDiagnostics: isErgodic(), isIrreducible()

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
  # Create a 3x3 primitive PPM
  ( A <- matrix(c(0,1,2,0.5,0,0,0,0.6,0), byrow=TRUE, ncol=3) )

  # Diagnose primitivity
  isPrimitive(A)

  # Create a 3x3 imprimitive PPM
  B<-A; B[1,2] <- 0; B

  # Diagnose primitivity
  isPrimitive(B)

popdemo documentation built on Nov. 16, 2021, 5:06 p.m.