pub fn not_equal_columns<T: Number, const R: usize, const C: usize>(
    x: &TMat<T, R, C>,
    y: &TMat<T, R, C>
) -> TVec<bool, C>
Expand description

Perform a component-wise not-equal-to comparison of two matrices.

Return a boolean vector which components value is True if this expression is satisfied per column of the matrices.