17 lines
289 B
C++
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
|