MLPACK  1.0.4
mvu.hpp
Go to the documentation of this file.
00001 
00025 #ifndef __MLPACK_METHODS_MVU_MVU_HPP
00026 #define __MLPACK_METHODS_MVU_MVU_HPP
00027 
00028 #include <mlpack/core.hpp>
00029 
00030 namespace mlpack {
00031 namespace mvu {
00032 
00040 class MVU
00041 {
00042  public:
00043   MVU(const arma::mat& dataIn);
00044 
00045   void Unfold(const size_t newDim,
00046               const size_t numNeighbors,
00047               arma::mat& outputCoordinates);
00048 
00049  private:
00050   const arma::mat& data;
00051 };
00052 
00053 }; // namespace mvu
00054 }; // namespace mlpack
00055 
00056 #endif