is.skew.symmetric.matrix | R Documentation |
This function returns TRUE
if the matrix argument x is
a skew symmetric matrix, i.e., the transpose of the matrix is
the negative of the matrix. Otherwise, FALSE
is returned.
is.skew.symmetric.matrix(x, tol = 1e-08)
x |
a numeric square matrix |
tol |
a numeric tolerance level usually left out |
Let {\bf{x}} be an order n matrix. If every element of the matrix {\bf{x}} + {\bf{x'}} in absolute value is less than the given tolerance, then the matrix argument is declared to be skew symmetric.
A TRUE or FALSE value.
Frederick Novomestky fnovomes@poly.edu
Bellman, R. (1987). Matrix Analysis, Second edition, Classics in Applied Mathematics, Society for Industrial and Applied Mathematics.
Horn, R. A. and C. R. Johnson (1990). Matrix Analysis, Cambridge University Press.
A <- diag( 1, 3 ) is.skew.symmetric.matrix( A ) B <- matrix( c( 0, -2, -1, -2, 0, -4, 1, 4, 0 ), nrow=3, byrow=TRUE ) is.skew.symmetric.matrix( B ) C <- matrix( c( 0, 2, 1, 2, 0, 4, 1, 4, 0 ), nrow=3, byrow=TRUE ) is.skew.symmetric.matrix( C )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.