Learn R Programming

mrgsolve (version 1.5.1)

matrix_helpers: Create matrices from vector input

Description

Create matrices from vector input

Usage

bmat(..., correlation = FALSE, digits = -1)

cmat(..., digits = -1)

dmat(...)

Arguments

...

matrix data

correlation

logical; if TRUE, off-diagonal elements are assumed to be correlations and converted to covariances

digits

if greater than zero, matrix is passed to signif (along with digits) prior to returning

Details

bmat makes a block matrix. cmat makes a correlation matrix. dmat makes a diagonal matrix.

See Also

as_bmat

as_dmat

Examples

Run this code

dmat(1,2,3)/10

bmat(0.5,0.01,0.2)

cmat(0.5, 0.87,0.2)

Run the code above in your browser using DataLab