Add some missing spaces.

This commit is contained in:
sebcrozet 2019-11-17 13:24:00 +01:00 committed by Sébastien Crozet
parent b96159aab3
commit cd8fc9285f
1 changed files with 11 additions and 11 deletions

View File

@ -148,7 +148,7 @@ where
} }
/// Given the Cholesky decomposition of a matrix `M`, a scalar `sigma` and a vector `v`, /// Given the Cholesky decomposition of a matrix `M`, a scalar `sigma` and a vector `v`,
/// performs a rank one update such that we end up with the decomposition of `M + sigma * v*v.adjoint()`. /// performs a rank one update such that we end up with the decomposition of `M + sigma * (v * v.adjoint())`.
#[inline] #[inline]
pub fn rank_one_update<R2: Dim, S2>(&mut self, x: &Vector<N, R2, S2>, sigma: N::RealField) pub fn rank_one_update<R2: Dim, S2>(&mut self, x: &Vector<N, R2, S2>, sigma: N::RealField)
where where
@ -243,7 +243,7 @@ where
} }
/// Given the Cholesky decomposition of a matrix `M`, a scalar `sigma` and a vector `v`, /// Given the Cholesky decomposition of a matrix `M`, a scalar `sigma` and a vector `v`,
/// performs a rank one update such that we end up with the decomposition of `M + sigma * x*x.adjoint()`. /// performs a rank one update such that we end up with the decomposition of `M + sigma * (x * x.adjoint())`.
/// ///
/// This helper method is calling for by `rank_one_update` but also `insert_column` and `remove_column` /// This helper method is calling for by `rank_one_update` but also `insert_column` and `remove_column`
/// where it is used on a square slice of the decomposition /// where it is used on a square slice of the decomposition