Given a vector of eigenvalue ratios, ensure that the covariance matrix always has those eigenvalue ratios.
EigenvalueRatioConstraint (const arma::vec &ratios)
Create the EigenvalueRatioConstraint object with the given vector of eigenvalue ratios. void ApplyConstraint (arma::mat &covariance) const
Apply the eigenvalue ratio constraint to the given covariance matrix.
const arma::vec & ratios
Ratios for eigenvalues.
Given a vector of eigenvalue ratios, ensure that the covariance matrix always has those eigenvalue ratios.
When you create this object, make sure that the vector of ratios that you pass does not go out of scope, because this object holds a reference to that vector instead of copying it.
Definition at line 36 of file eigenvalue_ratio_constraint.hpp.
Create the EigenvalueRatioConstraint object with the given vector of eigenvalue ratios. These ratios are with respect to the first eigenvalue, which is the largest eigenvalue, so the first element of the vector should be 1. In addition, all other elements should be less than or equal to 1.
Definition at line 45 of file eigenvalue_ratio_constraint.hpp.
References mlpack::Log::Fatal, and mlpack::Log::Warn.
Apply the eigenvalue ratio constraint to the given covariance matrix.
Definition at line 70 of file eigenvalue_ratio_constraint.hpp.
References ratios.
Ratios for eigenvalues.
Definition at line 89 of file eigenvalue_ratio_constraint.hpp.
Referenced by ApplyConstraint().
Generated automatically by Doxygen for MLPACK from the source code.