actionIdxMat: Info about the actions in the HMDP model under consideration.

Description Usage Arguments Value Author(s) Examples

View source: R/infoMat.R

Description

Info about the actions in the HMDP model under consideration.

Usage

1
  actionIdxMat(prefix = "", file = "actionIdx.bin")

Arguments

prefix

A character string with the prefix added to til file(s).

file

The HMDP binary file containing the description under consideration.

Value

A matrix with columns (aId, ...) where aId is the action row id and ... are alternating pairs (scp, idx), one for each possible transition where scp is the scope that can be 4 values: 2 - A transition to a child process (stage zero in the child process), 1 - A transition to next stage in the current process, 0 - A transition to the next stage in the father process. the idx in the pair denote the index of the state at the stage considered. Finally, if scope = 3 then a transition to the state with sId = idx is considered.

Author(s)

Lars Relund lars@relund.dk

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
wDir<-getwd()
setwd(system.file("models", package = "MDP"))

prefix<-"machine1_"
stateIdxMat(prefix)
stateIdxDf(prefix)
actionIdxMat(prefix)
actionIdxDf(prefix)
actionWeightMat(prefix)
weightNames(prefix)
transProbMat(prefix)
a<-actionInfo(prefix)
a[order(a$sId),]

setwd(wDir)

MDP documentation built on May 2, 2019, 6:48 p.m.

Related to actionIdxMat in MDP...