Fix indentation in src/mlpack/core/math/lin_alg_impl.hpp

Co-authored-by: Marcus Edel <marcus.edel@fu-berlin.de>
This commit is contained in:
Omar Shrit
2022-04-27 17:57:33 -04:00
committed by Ryan Curtin
co-authored by Marcus Edel
parent 047dc47b3b
commit ed07d9f05a
+2 -2
View File
@@ -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;