mirror of
https://github.com/Relintai/pmlpp.git
synced 2025-01-10 17:49:36 +01:00
28 lines
461 B
C
28 lines
461 B
C
|
|
||
|
#ifndef MLPP_TRANSFORMS_OLD_H
|
||
|
#define MLPP_TRANSFORMS_OLD_H
|
||
|
|
||
|
//
|
||
|
// Transforms.hpp
|
||
|
//
|
||
|
//
|
||
|
|
||
|
#include "core/math/math_defs.h"
|
||
|
|
||
|
#include "core/object/reference.h"
|
||
|
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
|
||
|
class MLPPTransformsOld : public Reference {
|
||
|
GDCLASS(MLPPTransformsOld, Reference);
|
||
|
|
||
|
public:
|
||
|
std::vector<std::vector<real_t>> discreteCosineTransform(std::vector<std::vector<real_t>> A);
|
||
|
|
||
|
protected:
|
||
|
static void _bind_methods();
|
||
|
};
|
||
|
|
||
|
#endif /* Transforms_hpp */
|