Files
Aurora/src/Function.h

17 lines
289 B
C
Raw Normal View History

2023-04-18 13:31:14 +08:00
//
// Created by Krad on 2023/4/6.
//
#ifndef MATLABFUNCTIONS_MATRIXFUNCTIONS_H
#define MATLABFUNCTIONS_MATRIXFUNCTIONS_H
#include <complex>
namespace Aurora{
2023-10-08 15:58:43 +08:00
float* malloc(size_t size,bool complex = false);
2023-04-20 09:31:10 +08:00
void free(void* ptr);
2023-04-18 13:31:14 +08:00
};
#endif //MATLABFUNCTIONS_MATRIXFUNCTIONS_H