Rev 42961 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/base/man/isSymmetric.Rd% Part of the R package, http://www.R-project.org% Copyright 1995-2007 R Core Development Team% Distributed under GPL 2 or later\name{isSymmetric}\alias{isSymmetric}\alias{isSymmetric.matrix}\title{Test if a Matrix or other Object is Symmetric}\description{Generic function to test if \code{object} is symmetric or not.Currently only a matrix method is implemented.}\usage{isSymmetric(object, \dots)\method{isSymmetric}{matrix}(object, tol = 100 * .Machine$double.eps, \dots)}\arguments{\item{object}{any \R object; a \code{\link{matrix}} for the matrix method.}\item{tol}{numeric scalar >= 0. Smaller differences are notconsidered, see \code{\link{all.equal.numeric}}.}\item{\dots}{further arguments passed to methods; the matrix methodpasses these to \code{\link{all.equal}}.}}\value{logical indicating if \code{object} is symmetric or not.}\details{The \code{\link{matrix}} method is used inside \code{\link{eigen}} bydefault to test symmetry of matrices \emph{up to rounding error}, using\code{\link{all.equal}}. It might not be appropriate in allsituations.}\seealso{\code{\link{eigen}} which calls \code{isSymmetric} when its\code{symmetric} argument is missing, as per default.}\examples{isSymmetric(D3 <- diag(3)) # -> TRUED3[2,1] <- 1e-100D3isSymmetric(D3) # TRUEisSymmetric(D3, tol = 0) # FALSE for zero-tolerance}\keyword{array}\keyword{utilities}