PCMBase (version 1.2.10)

PCMParamLocateInShortVector: Locate a named parameter in the short vector representation of a model

Description

Locate a named parameter in the short vector representation of a model

Usage

PCMParamLocateInShortVector(o, accessExpr)

Arguments

o

a PCM model object.

accessExpr

a character string used to access the parameter, e.g. "$Theta[,,1]" or "[['Theta']][,,1]".

Value

an integer vector of length PCMParamCount(o) with NAs everywhere except at the coordinates corresponding to the parameter in question.

Examples

Run this code
# NOT RUN {
model <- PCM(PCMDefaultModelTypes()["C"], k = 3, regimes = c("a", "b"))
# The parameter H is a diagonal 3x3 matrix. If this matrix is considered as
# a vector the indices of its diagonal elements are 1, 5 and 9. These indices
# are indicated as the non-NA entries in the returned vector.

PCMParamLocateInShortVector(model, "$H[,,1]")
PCMParamLocateInShortVector(model, "$H[,,'a']")
PCMParamLocateInShortVector(model, "$H[,,'b']")
# }

Run the code above in your browser using DataLab