Files
Aurora/src/Function.h
2023-10-08 15:58:43 +08:00

17 lines
289 B
C++

//
// Created by Krad on 2023/4/6.
//
#ifndef MATLABFUNCTIONS_MATRIXFUNCTIONS_H
#define MATLABFUNCTIONS_MATRIXFUNCTIONS_H
#include <complex>
namespace Aurora{
float* malloc(size_t size,bool complex = false);
void free(void* ptr);
};
#endif //MATLABFUNCTIONS_MATRIXFUNCTIONS_H