mirror of
https://github.com/Relintai/pmlpp.git
synced 2024-12-23 15:06:52 +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 */
|