is_symmetric_cpp: C++ implementation to check if a matrix is symmetric
Description
C++ implementation to check if a matrix is symmetric
Usage
is_symmetric_cpp(m, tol = 1e-12)
Arguments
tol
A Numeric scalar >= 0. Differences smaller than tol are ignored.
Value
Returns TRUE if the matrix is symmetric and FALSE otherwise.