pub fn matrix_comp_mult<N: Number, R: Dimension, C: Dimension>(
    x: &TMat<N, R, C>,
    y: &TMat<N, R, C>
) -> TMat<N, R, C>where
    DefaultAllocator: Alloc<N, R, C>,
Expand description

Component-wise multiplication of two matrices.