Description Usage Arguments Author(s) See Also
Checks matrix properties and stops if any test fails. Returns the matrix if all tests succeed.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | MatrixCheck(
A,
IsSquareMatrix = FALSE,
IsSymmetric = FALSE,
IsNilpotent = FALSE,
...
)
## Default S3 method:
MatrixCheck(
A,
IsSquareMatrix = FALSE,
IsSymmetric = FALSE,
IsNilpotent = FALSE,
...
)
## S3 method for class 'yac_symbol'
MatrixCheck(
A,
IsSquareMatrix = FALSE,
IsSymmetric = FALSE,
IsNilpotent = FALSE,
...
)
|
A |
Input. |
IsSquareMatrix |
Logical. Test if input is a square matrix. |
IsSymmetric |
Logical. Test if input is a symmetric matrix. |
IsNilpotent |
Logical. Test if input is a nilponent matrix. |
... |
... |
Ivan Jacob Agaloos Pesigan
Other predicate functions:
IsDiagonal()
,
IsIdempotent()
,
IsInvertible()
,
IsMatrix()
,
IsNilpotent()
,
IsOrthogonal()
,
IsPositiveDefinite()
,
IsScalar()
,
IsSingular()
,
IsSquareMatrix()
,
IsSymmetric()
,
IsVector()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.