[mlpack-svn] r13225 - mlpack/trunk/src/mlpack/methods/lars

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Thu Jul 12 16:51:58 EDT 2012


Author: niche
Date: 2012-07-12 16:51:58 -0400 (Thu, 12 Jul 2012)
New Revision: 13225

Modified:
   mlpack/trunk/src/mlpack/methods/lars/lars.hpp
Log:
added back in accessor for matUtriCholFactor

Modified: mlpack/trunk/src/mlpack/methods/lars/lars.hpp
===================================================================
--- mlpack/trunk/src/mlpack/methods/lars/lars.hpp	2012-07-12 20:22:09 UTC (rev 13224)
+++ mlpack/trunk/src/mlpack/methods/lars/lars.hpp	2012-07-12 20:51:58 UTC (rev 13225)
@@ -148,6 +148,9 @@
   //! the last element.
   const std::vector<double>& LambdaPath() const { return lambdaPath; }
 
+  //! Access the upper triangular cholesky factor
+  const arma::mat& MatUtriCholFactor() const { return matUtriCholFactor; }
+  
 private:
   //! Gram matrix.
   arma::mat matGramInternal;




More information about the mlpack-svn mailing list