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