isSymmetric

Returns true if the given matrix is symmetric.

bool
isSymmetric
(
T
uint U
)
(
const Matrix!(T, U, U) m
,
T eps = 1e-5
)

Parameters

m Matrix!(T, U, U)

target matrix

eps T

criteria of approximation

Return Value

Type: bool

true if the given matrix is symmetric

Meta