mirror of
https://github.com/Relintai/pmlpp.git
synced 2024-11-14 14:07:18 +01:00
28 lines
447 B
C++
28 lines
447 B
C++
|
|
#ifndef MLPP_TRANSFORMS_H
|
|
#define MLPP_TRANSFORMS_H
|
|
|
|
//
|
|
// Transforms.hpp
|
|
//
|
|
//
|
|
|
|
#include "core/math/math_defs.h"
|
|
|
|
#include "core/object/reference.h"
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class MLPPTransforms : public Reference {
|
|
GDCLASS(MLPPTransforms, Reference);
|
|
|
|
public:
|
|
std::vector<std::vector<real_t>> discreteCosineTransform(std::vector<std::vector<real_t>> A);
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
};
|
|
|
|
#endif /* Transforms_hpp */
|