pub fn subtract<T>(ls: &[T], rs: &[T], out: &mut [T])where T: Sub<Output = T> + Copy,
Subtracts a vector from another vector.