Description Usage Arguments Details Value Examples
Checks whether a matrix is square and stochastic
1 |
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.
1 2 3 | M <- matrix(c(0.6116, 0.3884, 0, 1.0000), 2, 2, byrow=TRUE)
mdp_check_square_stochastic(M)
|
Loading required package: Matrix
Loading required package: linprog
Loading required package: lpSolve
[1] ""
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.