pub fn div_slices(a: &[f32], b: &[f32]) -> Vec<f32>
Element-wise division: result[i] = a[i] / b[i].
result[i] = a[i] / b[i]
Division by zero follows IEEE 754 semantics (produces ±inf or NaN).
±inf
NaN