Function matrixcompare::compare_matrices[][src]

pub fn compare_matrices<T, C>(
    left: impl Matrix<T>,
    right: impl Matrix<T>,
    comparator: &C
) -> Result<(), MatrixComparisonFailure<T, C::Error>> where
    T: Zero + Clone,
    C: ElementwiseComparator<T>, 

Comparison of two matrices.

Most users will only need to use the comparison macro. This function is mainly of use to users who want to build their own macros.