mdp_check_square_stochastic {MDPtoolbox} | R Documentation |
Checks whether a matrix is square and stochastic
mdp_check_square_stochastic(X)
X |
a matrix |
mdp_check_square_stochastic checks if the matrix (X) is square and stochastic (sums of rows equal to 1). If it is the case, the function returns an empty error message. In the opposite case, the function returns an error message describing the problem.
Returns a character string which is empty if the matrix is square and stochastic. In the opposite case, the variable contains problem information.
M <- matrix(c(0.6116, 0.3884, 0, 1.0000), 2, 2, byrow=TRUE)
mdp_check_square_stochastic(M)