matrix2 {popbio} | R Documentation |
Square matrices
Description
Create a square matrix from a given set of values
Usage
matrix2(x, stages, byrow = TRUE)
Arguments
x |
a vector of matrix elements |
stages |
a vector of row names (also assigned to columns) |
byrow |
fill matrix by rows , default TRUE |
Value
a square matri
Author(s)
Chris Stubben
See Also
Examples
# Centaurea corymbosa from Freville 2004
ceco <- c(0,0,5.905,0.368,0.639, 0.025, 0.001, 0.152, 0.051)
stages <- c("seedling", "vegetative", "flowering")
# shortcut for
matrix(ceco, nrow=3, byrow=TRUE, dimnames=list(stages,stages))
matrix2(ceco, stages)
[Package popbio version 2.8 Index]