pub fn equal_columns<T, const R: usize, const C: usize>(
x: &Matrix<T, Const<R>, Const<C>, ArrayStorage<T, R, C>>,
y: &Matrix<T, Const<R>, Const<C>, ArrayStorage<T, R, C>>,
) -> Matrix<bool, Const<C>, Const<1>, ArrayStorage<bool, C, 1>>where
T: Number,Expand description
Perform a component-wise 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.