pub fn div<T>(src1: &[T], src2: &[T], dst: &mut [T])
Expand description
Divides all values in src1
by src2
element-wise and stores the results in dst
.
All slices must have the same length.
ยงPanics
This method panics if the slices have different lengths.