We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb6694b commit 98c4928Copy full SHA for 98c4928
src/deviation.rs
@@ -165,14 +165,14 @@ where
165
166
fn mean_sq_dev(&self, other: &ArrayBase<S, D>) -> A
167
where
168
- A: AddAssign + Clone + FromPrimitive + Signed
+ A: AddAssign + Clone + FromPrimitive + Signed,
169
{
170
self.sq_l2_dist(other) / A::from_usize(self.len()).unwrap()
171
}
172
173
fn root_mean_sq_dev(&self, other: &ArrayBase<S, D>) -> A
174
175
- A: AddAssign + Clone + FromPrimitive + Signed + Float
+ A: AddAssign + Clone + FromPrimitive + Signed + Float,
176
177
self.mean_sq_dev(other).sqrt()
178
0 commit comments