mirror of
https://github.com/Relintai/pmlpp.git
synced 2024-11-13 13:57:19 +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 */
|