Return true if A is a symmetric matrix within the tolerance specified by tol.
The default tolerance is zero (uses faster code).
Matrix A is considered symmetric if
norm (A - A.', Inf) / norm (A, Inf) < tol
.
See also: ishermitian, isdefinite.
Package: octave