Function max3

Source
pub fn max3<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>>,
    c: &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 three vectors.

ยงSee also: