pub fn max2<T, const D: usize>(
a: &Matrix<T, Const<D>, Const<1>, ArrayStorage<T, D, 1>>,
b: &Matrix<T, Const<D>, Const<1>, ArrayStorage<T, D, 1>>,
) -> Matrix<T, Const<D>, Const<1>, ArrayStorage<T, D, 1>>where
T: Number,Expand description
Component-wise maximum between two vectors.