12 #ifndef MLPACK_METHODS_SVDWRAPPER_HPP 13 #define MLPACK_METHODS_SVDWRAPPER_HPP 39 template<
class Factorizer = DummyClass>
44 SVDWrapper(
const Factorizer& factorizer = Factorizer()) :
45 factorizer(factorizer)
61 double Apply(
const arma::mat& V,
76 double Apply(
const arma::mat& V,
83 Factorizer factorizer;
SVDWrapper< DummyClass > ArmaSVDFactorizer
add simple typedefs
Definition: svd_wrapper.hpp:87
Linear algebra utility functions, generally performed on matrices or vectors.
Definition: cv.hpp:1
The core includes that mlpack expects; standard C++ includes and Armadillo.
This class acts as a dummy class for passing as template parameter.
Definition: svd_wrapper.hpp:27
This class acts as the wrapper for all SVD factorizers which are incompatible with CF module...
Definition: svd_wrapper.hpp:40