umxMatrix is a wrapper for mxMatrix which labels cells buy default, and has the name parameter first in order.
umxMatrix(name = NA, type = "Full", nrow = NA, ncol = NA,
free = FALSE, values = NA, labels = TRUE, lbound = NA, ubound = NA,
byrow = getOption("mxByrow"), dimnames = NA,
condenseSlots = getOption("mxCondenseMatrixSlots"), ...,
joinKey = as.character(NA), joinModel = as.character(NA), jiggle = NA)
The name of the matrix (Default = NA). Note the different order compared to mxMatrix!
The type of the matrix (Default = "Full")
Number of rows in the matrix: Must be set
Number of columns in the matrix: Must be set
Whether cells are free (Default FALSE)
The values of the matrix (Default NA)
Either whether to label the matrix (default TRUE), OR a vector of labels to apply.
Lower bounds on cells (Defaults to NA)
Upper bounds on cells (Defaults to NA)
Whether to fill the matrix down columns or across rows first (Default = getOption('mxByrow')
NA
Whether to save memory by NULLing out unused matrix elements, like labels, ubounds etc. Default = getOption('mxCondenseMatrixSlots')
Additional parameters (!! not currently supported by umxMatrix)
See mxMatrix documentation: Defaults to as.character(NA)
See mxMatrix documentation: Defaults to as.character(NA)
= NA passed to umxLabel to jiggle start values (default does nothing)
- mxMatrix
- umxLabel
Other Core Modelling Functions: plot.MxModel
,
umxDiagnose
, umxLatent
,
umxPath
, umxRAM
,
umxReduceACE
, umxReduceGxE
,
umxRun
, umxSuperModel
,
umx
# NOT RUN {
umxMatrix("test", "Full", 1, 1)
# }
Run the code above in your browser using DataLab