Description Usage Arguments Details Value Author(s) See Also Examples
IsInvertible()
returns TRUE
if A
is an invertible matrix,
and FALSE
otherwise.
1 | IsInvertible(A, tol = 1e-08)
|
A |
Input. |
tol |
Numeric. Tolerance. |
An m \times m matrix \mathbf{A} is invertible if there exists an m \times m matrix \mathbf{B} such that
\mathbf{A} \mathbf{B} = \mathbf{B} \mathbf{A} = \mathbf{I}_{m}
where \mathbf{I}_{m} is an m \times m identity matrix.
An m \times m matrix \mathbf{A} is noninvertible or singular if its determinant is zero.
A
is considered invertible if its determinant
is NOT less than or equal
to a tolerance value.
Logical.
Ivan Jacob Agaloos Pesigan
Other predicate functions:
IsDiagonal()
,
IsIdempotent()
,
IsMatrix()
,
IsNilpotent()
,
IsOrthogonal()
,
IsPositiveDefinite()
,
IsScalar()
,
IsSingular()
,
IsSquareMatrix()
,
IsSymmetric()
,
IsVector()
,
MatrixCheck()
1 2 3 4 5 | # TRUE
IsInvertible(diag(2))
# FALSE
IsInvertible(matrix(1, nrow = 2, ncol = 2))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.