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;