Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 98c4928

Browse files
committedApr 28, 2019
deviation: result of cargo fmt
1 parent cb6694b commit 98c4928

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/deviation.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,14 +165,14 @@ where
165165

166166
fn mean_sq_dev(&self, other: &ArrayBase<S, D>) -> A
167167
where
168-
A: AddAssign + Clone + FromPrimitive + Signed
168+
A: AddAssign + Clone + FromPrimitive + Signed,
169169
{
170170
self.sq_l2_dist(other) / A::from_usize(self.len()).unwrap()
171171
}
172172

173173
fn root_mean_sq_dev(&self, other: &ArrayBase<S, D>) -> A
174174
where
175-
A: AddAssign + Clone + FromPrimitive + Signed + Float
175+
A: AddAssign + Clone + FromPrimitive + Signed + Float,
176176
{
177177
self.mean_sq_dev(other).sqrt()
178178
}

0 commit comments

Comments
 (0)
Please sign in to comment.