mirror of
https://github.com/Relintai/pmlpp.git
synced 2025-01-10 17:49:36 +01:00
21 lines
324 B
C++
21 lines
324 B
C++
|
//
|
||
|
// Transforms.hpp
|
||
|
//
|
||
|
//
|
||
|
|
||
|
#ifndef Transforms_hpp
|
||
|
#define Transforms_hpp
|
||
|
|
||
|
#include <vector>
|
||
|
#include <string>
|
||
|
|
||
|
namespace MLPP{
|
||
|
class Transforms{
|
||
|
public:
|
||
|
std::vector<std::vector<double>> discreteCosineTransform(std::vector<std::vector<double>> A);
|
||
|
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif /* Transforms_hpp */
|