Function modf_vec

Source
pub fn modf_vec<T, const D: usize>(
    x: &Matrix<T, Const<D>, Const<1>, ArrayStorage<T, D, 1>>,
    y: &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 modulus.

Returns x - y * floor(x / y) for each component in x using the corresponding component of y.

ยงSee also: