find_wildcards {datafsm} | R Documentation |
Find Indices for Non-identifiable Elements of State Matrix.
Description
find_wildcards
finds indices for non-identifiable elements of state
matrix.
Usage
find_wildcards(state_mat, action_vec, cols)
Arguments
state_mat |
Numeric matrix with rows as states and columns as predictors. |
action_vec |
Numeric vector indicating what action to take for each state. |
cols |
Numeric vector same length as number of columns of the
state matrix |
Details
This is a helper function for degeneracy_check
.
Value
Returns a list of indices (tuples specifying row and column of a matrix).
Examples
tft_state <- matrix(c(1, 1, 1, 1, 2, 2, 2, 2), 2, 4)
tft_action <- matrix(c(1, 2))
find_wildcards(tft_state, tft_action, c(1, 2, 1, 2))
[Package datafsm version 0.2.4 Index]