nothing_initializer.hpp
Go to the documentation of this file.00001
00024 #ifndef __MLPACK_METHODS_SPARSE_CODING_NOTHING_INITIALIZER_HPP
00025 #define __MLPACK_METHODS_SPARSE_CODING_NOTHING_INITIALIZER_HPP
00026
00027 #include <mlpack/core.hpp>
00028
00029 namespace mlpack {
00030 namespace sparse_coding {
00031
00037 class NothingInitializer
00038 {
00039 public:
00045 static void Initialize(const arma::mat& ,
00046 const size_t ,
00047 arma::mat& )
00048 {
00049
00050 }
00051 };
00052
00053 };
00054 };
00055
00056 #endif