pub fn average_weight_vectors(vectors: &[&[f32]]) -> Result<Vec<f32>, RloxError>
Average N weight vectors element-wise: result[i] = mean(vectors[j][i] for all j)
result[i] = mean(vectors[j][i] for all j)
All vectors must have the same length.