mdp_check_square_stochastic {MDPtoolbox} | R Documentation |
Checks if a matrix is square and stochastic
Description
Checks whether a matrix is square and stochastic
Usage
mdp_check_square_stochastic(X)
Arguments
X |
a matrix |
Details
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.
Value
Returns a character string which is empty if the matrix is square and stochastic. In the opposite case, the variable contains problem information.
Examples
M <- matrix(c(0.6116, 0.3884, 0, 1.0000), 2, 2, byrow=TRUE)
mdp_check_square_stochastic(M)
[Package MDPtoolbox version 4.0.3 Index]