Function convolution_or

Source
pub fn convolution_or<T>(f: Vec<T>, g: Vec<T>) -> Vec<T>
where T: Copy + Add<Output = T> + Sub<Output = T> + Mul<Output = T>,
Expand description

$\mathtt{a_{i \lor j}} = \sum \mathtt{f_{i}} * \mathtt{g_{j}}$を満たすaを求める。