From ed07d9f05afbfa1bc9b5a145fca092cd9aba0933 Mon Sep 17 00:00:00 2001 From: Omar Shrit Date: Thu, 16 Dec 2021 15:31:41 +0100 Subject: [PATCH] Fix indentation in src/mlpack/core/math/lin_alg_impl.hpp Co-authored-by: Marcus Edel --- src/mlpack/core/math/lin_alg_impl.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mlpack/core/math/lin_alg_impl.hpp b/src/mlpack/core/math/lin_alg_impl.hpp index 76597fd2a5..4c24c8dbee 100644 --- a/src/mlpack/core/math/lin_alg_impl.hpp +++ b/src/mlpack/core/math/lin_alg_impl.hpp @@ -65,8 +65,8 @@ inline void Center(const arma::mat& x, arma::mat& xCentered) * matrix. */ inline void WhitenUsingSVD(const arma::mat& x, - arma::mat& xWhitened, - arma::mat& whiteningMatrix) + arma::mat& xWhitened, + arma::mat& whiteningMatrix) { arma::mat covX, u, v, invSMatrix, temp1; arma::vec sVector;