Learn R Programming

popdemo (version 0.1-2)

sens: Calculate sensitivity matrix

Description

Calculate the sensitivity matrix using eigenvectors for a specified population projection matrix (PPM).

Usage

sens(A, eval="max", all=FALSE)

Arguments

A
a square, non-negative numeric matrix of any dimension
eval
the eigenvalue to evaluate. Default is eval="max", which evaluates the dominant eigenvalue. Otherwise, specifying e.g. eval=2 will evaluate sensitivity of the eigenvalue with second-largest modulus.
all
(optional) if FALSE, then only sensitivity values for observed transitions are returned.

Value

  • A sensitivity matrix of equal dimension to A.

Details

sens uses the eigenvectors of A to calculate the sensitivity matrix of the specified eigenvalue, see section 9.1 in Caswell (2001).

References

Caswell (2001) Matrix Population Models 2nd ed. Sinauer.

See Also

elas

Examples

Run this code
# Create a 3x3 PPM
    A <- matrix(c(0,1,2,0.5,0.1,0,0,0.6,0.6), byrow=TRUE, ncol=3)

    # Calculate sensitivities of dominant eigenvalue
    sens(A)

    # Calculate sensitivities of first subdominant eigenvalue,
    # only for observed transitions
    sens(A, eval=2, all=FALSE)

Run the code above in your browser using DataLab