Description Usage Arguments Value Examples
Checks a matrix to see if it is invertible.
1 |
x |
matrix: numeric matrix which should be checked to see if it is invertible. |
logical: TRUE if the supplied matrix is invertible, FALSE otherwise.
1 2 3 | is_invertible(matrix(c(1, 2, 2, 1), 2, 2)) # => TRUE
is_invertible(matrix(c(1, 1, 1, 1), 2, 2)) # => FALSE
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.