matrix2: Square matrices

View source: R/matrix2.R

matrix2R 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

matrix

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)


cstubben/popbio documentation built on April 2, 2024, 4:18 a.m.