mirror of
https://github.com/Relintai/pmlpp.git
synced 2024-11-13 13:57:19 +01:00
21 lines
323 B
C++
21 lines
323 B
C++
|
|
#ifndef MLPP_TRANSFORMS_OLD_H
|
|
#define MLPP_TRANSFORMS_OLD_H
|
|
|
|
//
|
|
// Transforms.hpp
|
|
//
|
|
//
|
|
|
|
#include "core/math/math_defs.h"
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class MLPPTransformsOld {
|
|
public:
|
|
std::vector<std::vector<real_t>> discreteCosineTransform(std::vector<std::vector<real_t>> A);
|
|
};
|
|
|
|
#endif /* Transforms_hpp */
|