Description Usage Arguments Value Author(s) Examples
Checks if a square matrix is not invertible.
1 | is.singular.matrix(x, tol = 1e-08)
|
x |
A numeric square matrix. |
tol |
Tolerance. |
Returns TRUE
if the matrix is singular or not invertible,
meaning the determinant of the matrix is 0.
Ivan Jacob Agaloos Pesigan
1 2 3 4 5 6 7 8 9 | Sigma <- matrix(
data = c(
225, 112.50, 56.25,
112.5, 225, 112.5,
56.25, 112.50, 225
),
ncol = 3
)
is.singular.matrix(Sigma)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.