Checks if the matrix is symmetric.
import mir.ndslice.slice: sliced; import mir.ndslice.topology: iota; assert(iota(2, 2).isSymmetric == false); assert( [1, 2, 2, 3].sliced(2, 2).isSymmetric == true);
See Implementation
Checks if the matrix is symmetric.